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 14:17:40 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2024-07-24 14:17:40 -0400
commite7503333e1a71fab0c97315ae0a8ac1388f10d14 (patch)
tree24aa1e3c49419f365cdd900f6e080f5fe72eca20 /src/game_data.h
parent4ffb5871e4bc54ab6765fcd738835c295d1e2924 (diff)
downloadlingo-ap-tracker-e7503333e1a71fab0c97315ae0a8ac1388f10d14.tar.gz
lingo-ap-tracker-e7503333e1a71fab0c97315ae0a8ac1388f10d14.tar.bz2
lingo-ap-tracker-e7503333e1a71fab0c97315ae0a8ac1388f10d14.zip
Save analysis uses remote location for non-counting panels
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 {