mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-12-01 01:18:00 +01:00
16 lines
378 B
C#
16 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();
|
|
}
|
|
}
|