namespace SplashEdit.RuntimeCode { /// /// Cutscene track types. Must match the C++ TrackType enum in cutscene.hh. /// public enum PSXTrackType : byte { CameraPosition = 0, CameraRotation = 1, ObjectPosition = 2, ObjectRotationY = 3, ObjectActive = 4, } }