summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--common/commands.h12
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
3namespace Commands
4{
5
6enum CommandIds {
7 UnknownCommand = 0,
8 HandshakeCommand,
9 CustomCommand = 0xffff
10};
11
12} \ No newline at end of file