diff options
Diffstat (limited to 'src/game_data.h')
-rw-r--r-- | src/game_data.h | 3 |
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 | ||
125 | struct MapArea { | 127 | struct 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 | ||
136 | enum class SubwaySunwarpType { | 139 | enum class SubwaySunwarpType { |