diff --git a/cockatrice/src/game/zones/zone_names.h b/cockatrice/src/game/zones/zone_names.h new file mode 100644 index 000000000..53b85459c --- /dev/null +++ b/cockatrice/src/game/zones/zone_names.h @@ -0,0 +1,28 @@ +/** + * @file zone_names.h + * @ingroup GameLogicZones + * @brief Canonical string identifiers for game zones. + */ + +#ifndef ZONE_NAMES_H +#define ZONE_NAMES_H + +/** + * @namespace ZoneNames + * @brief String constants for zone identification in protocol and lookups. + * + * These constants define the canonical names used to identify zones + * in network protocol messages and zone lookup operations. + */ +namespace ZoneNames +{ +constexpr const char *TABLE = "table"; +constexpr const char *GRAVE = "grave"; +constexpr const char *EXILE = "rfg"; +constexpr const char *HAND = "hand"; +constexpr const char *DECK = "deck"; +constexpr const char *SIDEBOARD = "sb"; +constexpr const char *STACK = "stack"; +} // namespace ZoneNames + +#endif // ZONE_NAMES_H