diff options
Diffstat (limited to 'game_data.h')
-rw-r--r-- | game_data.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/game_data.h b/game_data.h index 91b48a5..00d6328 100644 --- a/game_data.h +++ b/game_data.h | |||
@@ -19,6 +19,7 @@ enum class LingoColor { | |||
19 | }; | 19 | }; |
20 | 20 | ||
21 | struct Panel { | 21 | struct Panel { |
22 | int id; | ||
22 | int room; | 23 | int room; |
23 | std::string name; | 24 | std::string name; |
24 | std::vector<LingoColor> colors; | 25 | std::vector<LingoColor> colors; |
@@ -51,7 +52,7 @@ struct Room { | |||
51 | 52 | ||
52 | struct Location { | 53 | struct Location { |
53 | std::string name; | 54 | std::string name; |
54 | int location_id; | 55 | int location_id = -1; |
55 | int room; | 56 | int room; |
56 | std::vector<int> panels; | 57 | std::vector<int> panels; |
57 | }; | 58 | }; |