Nexus/Library/PackageCache/com.unity.2d.animation@3c53dae92956/Editor/SkinningModule/Undo/ICacheUndo.cs

12 lines
285 B
C#
Raw Permalink Normal View History

2026-01-06 17:23:00 +01:00
namespace UnityEditor.U2D.Animation
{
internal interface ICacheUndo
{
IUndo undoOverride { get; set; }
bool isUndoOperationSet { get; }
void IncrementCurrentGroup();
void BeginUndoOperation(string name);
void EndUndoOperation();
}
}