maybe all ui and funcs has been attached

This commit is contained in:
2021-07-13 14:00:39 +08:00
parent 8c641db61c
commit e4c6da9990
8 changed files with 203 additions and 94 deletions

21
UI/OperationEnum.cs Normal file
View File

@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace BallanceTASEditor.UI {
public enum OperationEnum {
Set,
Unset,
Copy,
PasteAfter,
PasteBefore,
Delete,
DeleteAfter,
DeleteBefore,
AddAfter,
AddBefore,
Undo,
Redo
}
}