about summary refs log tree commit diff stats
path: root/src/ap_state.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ap_state.h')
-rw-r--r--src/ap_state.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/ap_state.h b/src/ap_state.h index fb5c969..e9b9f92 100644 --- a/src/ap_state.h +++ b/src/ap_state.h
@@ -12,6 +12,8 @@ enum DoorShuffleMode { kNO_DOORS = 0, kSIMPLE_DOORS = 1, kCOMPLEX_DOORS = 2 };
12 12
13enum VictoryCondition { kTHE_END = 0, kTHE_MASTER = 1, kLEVEL_2 = 2 }; 13enum VictoryCondition { kTHE_END = 0, kTHE_MASTER = 1, kLEVEL_2 = 2 };
14 14
15enum LocationChecks { kNORMAL_LOCATIONS = 0, kREDUCED_LOCATIONS = 1, kPANELSANITY = 2 };
16
15void AP_SetTrackerFrame(TrackerFrame* tracker_frame); 17void AP_SetTrackerFrame(TrackerFrame* tracker_frame);
16 18
17void AP_Connect(std::string server, std::string player, std::string password); 19void AP_Connect(std::string server, std::string player, std::string password);
@@ -34,7 +36,7 @@ int AP_GetMasteryRequirement();
34 36
35int AP_GetLevel2Requirement(); 37int AP_GetLevel2Requirement();
36 38
37bool AP_IsReduceChecks(); 39bool AP_IsLocationVisible(int classification);
38 40
39VictoryCondition AP_GetVictoryCondition(); 41VictoryCondition AP_GetVictoryCondition();
40 42