diff options
Diffstat (limited to 'src/tracker_state.h')
| -rw-r--r-- | src/tracker_state.h | 17 |
1 files changed, 17 insertions, 0 deletions
| diff --git a/src/tracker_state.h b/src/tracker_state.h index 119b3b5..8f1002f 100644 --- a/src/tracker_state.h +++ b/src/tracker_state.h | |||
| @@ -1,10 +1,27 @@ | |||
| 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 | |||
| 7 | void ResetReachabilityRequirements(); | ||
| 8 | |||
| 4 | void RecalculateReachability(); | 9 | void RecalculateReachability(); |
| 5 | 10 | ||
| 6 | bool IsLocationReachable(int location_id); | 11 | bool IsLocationReachable(int location_id); |
| 7 | 12 | ||
| 8 | bool IsDoorOpen(int door_id); | 13 | bool IsDoorOpen(int door_id); |
| 9 | 14 | ||
| 15 | bool IsPaintingReachable(int painting_id); | ||
| 16 | |||
| 17 | const std::map<std::string, bool>& GetDoorRequirements(int door_id); | ||
| 18 | |||
| 19 | bool IsPilgrimageDoable(); | ||
| 20 | |||
| 21 | bool IsAreaPostgame(int area_id); | ||
| 22 | |||
| 23 | bool IsLocationPostgame(int location_id); | ||
| 24 | |||
| 25 | bool IsPaintingPostgame(int painting_id); | ||
| 26 | |||
| 10 | #endif /* end of include guard: TRACKER_STATE_H_8639BC90 */ | 27 | #endif /* end of include guard: TRACKER_STATE_H_8639BC90 */ |
