wuxianshengcong/Library/PackageCache/com.unity.2d.animation@9.1.2/Editor/SkinningModule/Undo/ICacheUndo.cs

12 lines
285 B
C#
Raw Permalink Normal View History

2025-01-02 14:49:00 +08:00
namespace UnityEditor.U2D.Animation
{
internal interface ICacheUndo
{
IUndo undoOverride { get; set; }
bool isUndoOperationSet { get; }
void IncrementCurrentGroup();
void BeginUndoOperation(string name);
void EndUndoOperation();
}
}