about summary refs log tree commit diff stats
path: root/src/tracker_state.h
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2024-05-16 17:06:33 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2024-05-16 17:06:33 -0400
commit4d8e36245e8ce43eef9b687a9108fd4c353f756f (patch)
treeba63b4a72c2d62816ad4056c6a45a72b3becce95 /src/tracker_state.h
parent249817743c12b453338c6d0a355180bf5084c73c (diff)
downloadlingo-ap-tracker-4d8e36245e8ce43eef9b687a9108fd4c353f756f.tar.gz
lingo-ap-tracker-4d8e36245e8ce43eef9b687a9108fd4c353f756f.tar.bz2
lingo-ap-tracker-4d8e36245e8ce43eef9b687a9108fd4c353f756f.zip
Added door popups that report requirements
Diffstat (limited to 'src/tracker_state.h')
-rw-r--r--src/tracker_state.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/tracker_state.h b/src/tracker_state.h index 119b3b5..7acb0f2 100644 --- a/src/tracker_state.h +++ b/src/tracker_state.h
@@ -1,10 +1,17 @@
1#ifndef TRACKER_STATE_H_8639BC90 1#ifndef TRACKER_STATE_H_8639BC90
2#define TRACKER_STATE_H_8639BC90 2#define TRACKER_STATE_H_8639BC90
3 3
4#include <map>
5#include <string>
6
7void ResetReachabilityRequirements();
8
4void RecalculateReachability(); 9void RecalculateReachability();
5 10
6bool IsLocationReachable(int location_id); 11bool IsLocationReachable(int location_id);
7 12
8bool IsDoorOpen(int door_id); 13bool IsDoorOpen(int door_id);
9 14
15const std::map<std::string, bool>& GetDoorRequirements(int door_id);
16
10#endif /* end of include guard: TRACKER_STATE_H_8639BC90 */ 17#endif /* end of include guard: TRACKER_STATE_H_8639BC90 */