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-19 03:51:23 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2024-07-19 03:51:23 -0400
commit8c5b719469bc61e33a451d9b3aeb66c7b0a6d68e (patch)
tree1f452dc8a601630a1fd50f4ee3f8ea25aed7b315 /src/game_data.h
parentb80e1b888a7203312119e5bfad9e26c2c17d9b9f (diff)
downloadlingo-ap-tracker-8c5b719469bc61e33a451d9b3aeb66c7b0a6d68e.tar.gz
lingo-ap-tracker-8c5b719469bc61e33a451d9b3aeb66c7b0a6d68e.tar.bz2
lingo-ap-tracker-8c5b719469bc61e33a451d9b3aeb66c7b0a6d68e.zip
Added savedata analyzer
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 23f7b3a..71bc533 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;
@@ -113,6 +114,7 @@ struct Location {
113 std::vector<int> panels; 114 std::vector<int> panels;
114 int classification = 0; 115 int classification = 0;
115 bool hunt = false; 116 bool hunt = false;
117 bool panel = false;
116}; 118};
117 119
118struct MapArea { 120struct MapArea {
@@ -124,6 +126,7 @@ struct MapArea {
124 int map_y; 126 int map_y;
125 int classification = 0; 127 int classification = 0;
126 bool hunt = false; 128 bool hunt = false;
129 bool panel = false;
127}; 130};
128 131
129enum class SubwaySunwarpType { 132enum class SubwaySunwarpType {