mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-12-02 17:57:59 +01:00
17 lines
378 B
C#
17 lines
378 B
C#
|
// Cinema Suite
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
namespace CinemaDirector.Helpers
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Implement this interface with any timeline item that manipulates data in a scene.
|
|||
|
/// </summary>
|
|||
|
interface IRevertable
|
|||
|
{
|
|||
|
RevertMode EditorRevertMode { get; set; }
|
|||
|
RevertMode RuntimeRevertMode { get; set; }
|
|||
|
|
|||
|
RevertInfo[] CacheState();
|
|||
|
}
|
|||
|
}
|