20 lines
454 B
C
20 lines
454 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
enum {
|
|
kBoardWidth = 10,
|
|
kBoardHeight = 10,
|
|
kBoardCellCount = kBoardWidth * kBoardHeight,
|
|
kFleetShipCount = 10,
|
|
kPlayerCapacity = 2,
|
|
kSpectatorCapacity = 8,
|
|
kSessionCapacity = kPlayerCapacity + kSpectatorCapacity,
|
|
kCommandQueueCapacity = 16,
|
|
kBotKnowledgeCellCount = kBoardCellCount,
|
|
kStateMessageCapacity = 512,
|
|
kRequestBodyCapacity = 192,
|
|
kSessionTokenBytes = 16,
|
|
kDisplayNameBytes = 80,
|
|
};
|