about summary refs log tree commit diff stats
path: root/src/global.h
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2024-02-18 09:38:08 -0500
committerStar Rauchenberger <fefferburbia@gmail.com>2024-02-18 09:38:08 -0500
commitcf3fc6cbcb9ad00f4b99502344431bef469cec8d (patch)
treefb803654f6aa432a495b820647931e6d79cebaf7 /src/global.h
parent7cb55acb62c5a03df75edd0c3c8f228295c1bee8 (diff)
downloadlingo-ap-tracker-cf3fc6cbcb9ad00f4b99502344431bef469cec8d.tar.gz
lingo-ap-tracker-cf3fc6cbcb9ad00f4b99502344431bef469cec8d.tar.bz2
lingo-ap-tracker-cf3fc6cbcb9ad00f4b99502344431bef469cec8d.zip
Make win condition checkable
Diffstat (limited to 'src/global.h')
-rw-r--r--src/global.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/global.h b/src/global.h index 2eb7884..31ebde3 100644 --- a/src/global.h +++ b/src/global.h
@@ -4,8 +4,12 @@
4#include <filesystem> 4#include <filesystem>
5#include <string_view> 5#include <string_view>
6 6
7struct Location;
8
7const std::filesystem::path& GetExecutableDirectory(); 9const std::filesystem::path& GetExecutableDirectory();
8 10
9std::string GetAbsolutePath(std::string_view path); 11std::string GetAbsolutePath(std::string_view path);
10 12
13bool IsLocationWinCondition(const Location& location);
14
11#endif /* end of include guard: GLOBAL_H_44945DBA */ 15#endif /* end of include guard: GLOBAL_H_44945DBA */