about summary refs log tree commit diff stats
path: root/src/game_data.h
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2024-07-24 09:40:22 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2024-07-24 09:40:22 -0400
commitc443acfd0b25b3e4f3446f795777b8dd18b00e2b (patch)
tree86340c00f1723310cbab02f0ebc496b25a780278 /src/game_data.h
parent378766bcee3cad04256ada937f96b232aba85cf3 (diff)
parentab5206255603f6401d9c216ffce26607da16ad33 (diff)
downloadlingo-ap-tracker-c443acfd0b25b3e4f3446f795777b8dd18b00e2b.tar.gz
lingo-ap-tracker-c443acfd0b25b3e4f3446f795777b8dd18b00e2b.tar.bz2
lingo-ap-tracker-c443acfd0b25b3e4f3446f795777b8dd18b00e2b.zip
Merge branch 'main' into panels
Diffstat (limited to 'src/game_data.h')
-rw-r--r--src/game_data.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/game_data.h b/src/game_data.h index 197585c..6f287cf 100644 --- a/src/game_data.h +++ b/src/game_data.h
@@ -43,6 +43,7 @@ struct Panel {
43 int id; 43 int id;
44 int room; 44 int room;
45 std::string name; 45 std::string name;
46 std::string nodepath;
46 std::vector<LingoColor> colors; 47 std::vector<LingoColor> colors;
47 std::vector<int> required_rooms; 48 std::vector<int> required_rooms;
48 std::vector<int> required_doors; 49 std::vector<int> required_doors;
@@ -120,6 +121,7 @@ struct Location {
120 std::vector<int> panels; 121 std::vector<int> panels;
121 int classification = 0; 122 int classification = 0;
122 bool hunt = false; 123 bool hunt = false;
124 bool panel = false;
123}; 125};
124 126
125struct MapArea { 127struct MapArea {
@@ -131,6 +133,7 @@ struct MapArea {
131 int map_y; 133 int map_y;
132 int classification = 0; 134 int classification = 0;
133 bool hunt = false; 135 bool hunt = false;
136 bool panel = false;
134}; 137};
135 138
136enum class SubwaySunwarpType { 139enum class SubwaySunwarpType {