설명 없음
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ICacheUndo.cs 285B

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. }