Initial commit of mtgonline project
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
#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";
|
||||
|
||||
} // namespace ZoneNames
|
||||
|
||||
#endif // ZONE_NAMES_H
|
||||
Reference in New Issue
Block a user