mirror of
https://gitgud.io/AbstractConcept/rimworld-animation-studio.git
synced 2024-08-15 00:43:27 +00:00
13 lines
443 B
C#
13 lines
443 B
C#
namespace UnityEditor.U2D.Animation
|
|
{
|
|
internal interface IUndo
|
|
{
|
|
void RecordObject(object o, string name);
|
|
void RegisterCompleteObjectUndo(object o, string name);
|
|
void RegisterCompleteObjectUndo(object[] o, string name);
|
|
void RegisterCreatedObjectUndo(object o, string name);
|
|
void DestroyObjectImmediate(object o);
|
|
void ClearUndo(object o);
|
|
void IncrementCurrentGroup();
|
|
}
|
|
}
|