about summary refs log tree commit diff stats
path: root/src/tracker_state.h
diff options
context:
space:
mode:
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 */