FiE-Game/Assets/Cinema Director/System/Runtime/Helpers/IRevertable.cs
2023-07-27 00:47:00 +05:00

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();
}
}