add comment on AssistFlag enum

This commit is contained in:
Martin Michelsen
2023-09-09 20:06:01 -07:00
parent 753b89c78d
commit 52ed062ed9
+5 -1
View File
@@ -14,7 +14,11 @@ namespace Episode3 {
class Server;
enum AssistFlag {
enum AssistFlag : uint32_t {
// Note: This enum is a uint32_t even though only 16 bits are used because
// the corresponding field in the protocol is a 32-bit field. There may also
// be bits used only by the client which are not documented here.
// clang-format off
READY_TO_END_PHASE = 0x0001,
DICE_WERE_EXCHANGED = 0x0002,