2021-07-13 14:00:39 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BallanceTASEditor.UI {
|
|
|
|
|
|
public enum OperationEnum {
|
|
|
|
|
|
Set,
|
|
|
|
|
|
Unset,
|
2021-08-08 12:04:17 +08:00
|
|
|
|
Cut,
|
2021-07-13 14:00:39 +08:00
|
|
|
|
Copy,
|
|
|
|
|
|
PasteAfter,
|
|
|
|
|
|
PasteBefore,
|
|
|
|
|
|
Delete,
|
|
|
|
|
|
DeleteAfter,
|
|
|
|
|
|
DeleteBefore,
|
|
|
|
|
|
AddAfter,
|
|
|
|
|
|
AddBefore,
|
|
|
|
|
|
Undo,
|
|
|
|
|
|
Redo
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|