about summary refs log tree commit diff stats
path: root/game_data.h
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2023-05-02 10:53:24 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2023-05-02 10:53:24 -0400
commit4ec5bf36218ad715657bba7649598410feae2794 (patch)
tree1609a001fe5a1f461d82eb1450a0d653b3c9406d /game_data.h
parent9f25878acfe1c7281a96f83742349516510c5b6d (diff)
downloadlingo-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.h3
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
21struct Panel { 21struct 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
52struct Location { 53struct 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};