diff options
Diffstat (limited to 'common/commands.h')
-rw-r--r-- | common/commands.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/common/commands.h b/common/commands.h new file mode 100644 index 0000000..74174ee --- /dev/null +++ b/common/commands.h | |||
@@ -0,0 +1,12 @@ | |||
1 | #pragma once | ||
2 | |||
3 | namespace Commands | ||
4 | { | ||
5 | |||
6 | enum CommandIds { | ||
7 | UnknownCommand = 0, | ||
8 | HandshakeCommand, | ||
9 | CustomCommand = 0xffff | ||
10 | }; | ||
11 | |||
12 | } \ No newline at end of file | ||