mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-12-01 01:18:00 +01:00
16 lines
268 B
C#
16 lines
268 B
C#
|
// Cinema Suite 2014
|
|||
|
|
|||
|
namespace CinemaDirector
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// An enumeration of Track Genres.
|
|||
|
/// </summary>
|
|||
|
public enum TimelineTrackGenre
|
|||
|
{
|
|||
|
GlobalTrack,
|
|||
|
ActorTrack,
|
|||
|
MultiActorTrack,
|
|||
|
CharacterTrack
|
|||
|
}
|
|||
|
}
|