mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-28 16:18:00 +01:00
14 lines
315 B
C#
14 lines
315 B
C#
|
|
|||
|
namespace CinemaDirector
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Options for Reverting data when Cutscenes go inactive.
|
|||
|
/// </summary>
|
|||
|
public enum RevertMode
|
|||
|
{
|
|||
|
Revert, // Revert to initial state.
|
|||
|
Finalize // Place into final state.
|
|||
|
// ToDo: AsIs for leaving state the way it is.
|
|||
|
}
|
|||
|
}
|