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 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 | ||
118 | struct MapArea { | 120 | struct 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 | ||
129 | enum class SubwaySunwarpType { | 132 | enum class SubwaySunwarpType { |