Files
stas-barecky/Library/PackageCache/com.unity.2d.animation@3c53dae92956/Editor/SkinningModule/Undo/ICacheUndo.cs
2026-01-08 20:43:08 +05:00

12 lines
285 B
C#

namespace UnityEditor.U2D.Animation
{
internal interface ICacheUndo
{
IUndo undoOverride { get; set; }
bool isUndoOperationSet { get; }
void IncrementCurrentGroup();
void BeginUndoOperation(string name);
void EndUndoOperation();
}
}