CPF/CPF/Input/PlatformHotkey.cs
2023-11-21 23:05:03 +08:00

18 lines
247 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace CPF.Input
{
public enum PlatformHotkey : byte
{
None,
SelectAll,
Copy,
Cut,
Paste,
Undo,
Redo
}
}