diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2023-05-02 10:53:24 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2023-05-02 10:53:24 -0400 |
commit | 4ec5bf36218ad715657bba7649598410feae2794 (patch) | |
tree | 1609a001fe5a1f461d82eb1450a0d653b3c9406d /game_data.h | |
parent | 9f25878acfe1c7281a96f83742349516510c5b6d (diff) | |
download | lingo-ap-tracker-4ec5bf36218ad715657bba7649598410feae2794.tar.gz lingo-ap-tracker-4ec5bf36218ad715657bba7649598410feae2794.tar.bz2 lingo-ap-tracker-4ec5bf36218ad715657bba7649598410feae2794.zip |
Sorted locations into map areas
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 | }; |