diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2024-04-03 14:33:30 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2024-04-03 14:33:30 -0400 |
commit | 3037b9305b10b58e01055c21bbce223d7b2c673f (patch) | |
tree | ebe7d5c88906c45b0b494955aef21e0a7756fa49 /src/ap_state.h | |
parent | e57195bfd9d84a571e8fa11998af5065848b4360 (diff) | |
download | lingo-ap-tracker-3037b9305b10b58e01055c21bbce223d7b2c673f.tar.gz lingo-ap-tracker-3037b9305b10b58e01055c21bbce223d7b2c673f.tar.bz2 lingo-ap-tracker-3037b9305b10b58e01055c21bbce223d7b2c673f.zip |
Added player position tracking
Diffstat (limited to 'src/ap_state.h')
-rw-r--r-- | src/ap_state.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ap_state.h b/src/ap_state.h index cc51a78..420a032 100644 --- a/src/ap_state.h +++ b/src/ap_state.h | |||
@@ -2,7 +2,9 @@ | |||
2 | #define AP_STATE_H_664A4180 | 2 | #define AP_STATE_H_664A4180 |
3 | 3 | ||
4 | #include <map> | 4 | #include <map> |
5 | #include <optional> | ||
5 | #include <string> | 6 | #include <string> |
7 | #include <tuple> | ||
6 | 8 | ||
7 | #include "game_data.h" | 9 | #include "game_data.h" |
8 | 10 | ||
@@ -46,4 +48,6 @@ bool AP_HasEarlyColorHallways(); | |||
46 | 48 | ||
47 | bool AP_HasReachedGoal(); | 49 | bool AP_HasReachedGoal(); |
48 | 50 | ||
51 | std::optional<std::tuple<int, int>> AP_GetPlayerPosition(); | ||
52 | |||
49 | #endif /* end of include guard: AP_STATE_H_664A4180 */ | 53 | #endif /* end of include guard: AP_STATE_H_664A4180 */ |