Cockatrice 2026-04-21-Development-2.11.0-beta.61
A virtual tabletop for multiplayer card games
Loading...
Searching...
No Matches
zone_names.h
Go to the documentation of this file.
1#ifndef ZONE_NAMES_H
2#define ZONE_NAMES_H
3
4namespace ZoneNames
5{
6// Protocol-level zone identifiers shared between client and server.
7// These must match exactly across all components.
8
9constexpr const char *TABLE = "table";
10constexpr const char *GRAVE = "grave";
11constexpr const char *EXILE = "rfg"; // "removed from game"
12constexpr const char *HAND = "hand";
13constexpr const char *DECK = "deck";
14constexpr const char *SIDEBOARD = "sb";
15constexpr const char *STACK = "stack";
16
17} // namespace ZoneNames
18
19#endif // ZONE_NAMES_H
Definition zone_names.h:5
constexpr const char * TABLE
Definition zone_names.h:9
constexpr const char * EXILE
Definition zone_names.h:11
constexpr const char * SIDEBOARD
Definition zone_names.h:14
constexpr const char * HAND
Definition zone_names.h:12
constexpr const char * STACK
Definition zone_names.h:15
constexpr const char * DECK
Definition zone_names.h:13
constexpr const char * GRAVE
Definition zone_names.h:10