mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-26 00:23:55 -07:00
- Add CommandZone and CommandZoneLogic for commander - Add CommanderTaxCounter - Add counter active state protocol (show/hide tax counters) - Add "Enable Command Zone" option in game creation dialogs - Add context menu actions for command zone operations Took 9 minutes Took 11 minutes
22 lines
606 B
C++
22 lines
606 B
C++
#ifndef ZONE_NAMES_H
|
|
#define ZONE_NAMES_H
|
|
|
|
namespace ZoneNames
|
|
{
|
|
// Protocol-level zone identifiers shared between client and server.
|
|
// These must match exactly across all components.
|
|
|
|
constexpr const char *TABLE = "table";
|
|
constexpr const char *GRAVE = "grave";
|
|
constexpr const char *EXILE = "rfg"; // "removed from game"
|
|
constexpr const char *HAND = "hand";
|
|
constexpr const char *DECK = "deck";
|
|
constexpr const char *SIDEBOARD = "sb";
|
|
constexpr const char *STACK = "stack";
|
|
|
|
// Command zone (Commander format)
|
|
constexpr const char *COMMAND = "command";
|
|
|
|
} // namespace ZoneNames
|
|
|
|
#endif // ZONE_NAMES_H
|