about summary refs log tree commit diff stats
path: root/ap_state.h
diff options
context:
space:
mode:
Diffstat (limited to 'ap_state.h')
-rw-r--r--ap_state.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/ap_state.h b/ap_state.h deleted file mode 100644 index d880c71..0000000 --- a/ap_state.h +++ /dev/null
@@ -1,33 +0,0 @@
1#ifndef AP_STATE_H_664A4180
2#define AP_STATE_H_664A4180
3
4#include <map>
5#include <string>
6
7#include "game_data.h"
8
9class TrackerFrame;
10
11enum DoorShuffleMode { kNO_DOORS = 0, kSIMPLE_DOORS = 1, kCOMPLEX_DOORS = 2 };
12
13void AP_SetTrackerFrame(TrackerFrame* tracker_frame);
14
15void AP_Connect(std::string server, std::string player, std::string password);
16
17bool AP_HasCheckedGameLocation(int area_id, int section_id);
18
19bool AP_HasColorItem(LingoColor color);
20
21bool AP_HasItem(const std::string& item, int quantity = 1);
22
23DoorShuffleMode AP_GetDoorShuffleMode();
24
25bool AP_IsColorShuffle();
26
27bool AP_IsPaintingShuffle();
28
29const std::map<std::string, std::string> AP_GetPaintingMapping();
30
31int AP_GetMasteryRequirement();
32
33#endif /* end of include guard: AP_STATE_H_664A4180 */