ICacheUndo.cs 285 B

1234567891011
  1. namespace UnityEditor.U2D.Animation
  2. {
  3. internal interface ICacheUndo
  4. {
  5. IUndo undoOverride { get; set; }
  6. bool isUndoOperationSet { get; }
  7. void IncrementCurrentGroup();
  8. void BeginUndoOperation(string name);
  9. void EndUndoOperation();
  10. }
  11. }