FiE-Game/Assets/Cinema Director/System/Runtime/Helpers/IRevertable.cs

17 lines
378 B
C#
Raw Normal View History

2023-07-26 21:47:00 +02:00
// 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();
}
}