mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-28 08:07:59 +01:00
13 lines
315 B
C#
13 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.
|
|
}
|
|
}
|