MyBook/Library/PackageCache/com.unity.2d.animation@7.1.1/Editor/SkinningModule/Undo/ICacheUndo.cs
2025-03-22 15:17:36 +08: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();
}
}