From 9cf74c63ba8fa7fa787c59e3a49a3cb6e3178521 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Wed, 20 Aug 2025 16:23:58 -0400 Subject: Converted puzzle symbols to an enum --- proto/data.proto | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) (limited to 'proto/data.proto') diff --git a/proto/data.proto b/proto/data.proto index 498543c..d3933c4 100644 --- a/proto/data.proto +++ b/proto/data.proto @@ -40,6 +40,30 @@ enum AxisDirection { Z_MINUS = 6; } +enum PuzzleSymbol { + PUZZLE_SYMBOL_UNKNOWN = 0; + + SUN = 1; + SPARKLES = 2; + ZERO = 3; + EXAMPLE = 4; + BOXES = 5; + PLANET = 6; + PYRAMID = 7; + CROSS = 8; + SWEET = 9; + GENDER = 10; + AGE = 11; + SOUND = 12; + ANAGRAM = 13; + JOB = 14; + STARS = 15; + NULL = 16; + EVAL = 17; + LINGO = 18; + QUESTION = 19; +} + message ProxyIdentifier { optional uint64 panel = 1; optional string answer = 2; @@ -93,7 +117,7 @@ message PanelData { optional string path = 4; optional string clue = 5; optional string answer = 6; - repeated string symbols = 7; + repeated PuzzleSymbol symbols = 7; repeated Proxy proxies = 8; -- cgit 1.4.1