about summary refs log tree commit diff stats
path: root/src/game_data.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/game_data.h')
-rw-r--r--src/game_data.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game_data.h b/src/game_data.h index 71bc533..3179365 100644 --- a/src/game_data.h +++ b/src/game_data.h
@@ -114,7 +114,7 @@ struct Location {
114 std::vector<int> panels; 114 std::vector<int> panels;
115 int classification = 0; 115 int classification = 0;
116 bool hunt = false; 116 bool hunt = false;
117 bool panel = false; 117 std::optional<int> single_panel;
118}; 118};
119 119
120struct MapArea { 120struct MapArea {
@@ -126,7 +126,7 @@ struct MapArea {
126 int map_y; 126 int map_y;
127 int classification = 0; 127 int classification = 0;
128 bool hunt = false; 128 bool hunt = false;
129 bool panel = false; 129 bool has_single_panel = false;
130}; 130};
131 131
132enum class SubwaySunwarpType { 132enum class SubwaySunwarpType {