diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2022-03-20 11:52:09 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2022-03-20 11:52:09 -0400 |
commit | a07d588c94f68cdc559ceb016c031c9199f0b868 (patch) | |
tree | 839b078d07f3c727bcce8f3ce340c2639e306143 /src/runtime.h | |
parent | 9458529e94ec3135a5a6fa0fbaf7e0ce1459168b (diff) | |
download | ether-a07d588c94f68cdc559ceb016c031c9199f0b868.tar.gz ether-a07d588c94f68cdc559ceb016c031c9199f0b868.tar.bz2 ether-a07d588c94f68cdc559ceb016c031c9199f0b868.zip |
we can now build a mac bundle!
Diffstat (limited to 'src/runtime.h')
-rw-r--r-- | src/runtime.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/runtime.h b/src/runtime.h new file mode 100644 index 0000000..a0e3a2c --- /dev/null +++ b/src/runtime.h | |||
@@ -0,0 +1,13 @@ | |||
1 | #ifndef RUNTIME_H_A8DA6E1E | ||
2 | #define RUNTIME_H_A8DA6E1E | ||
3 | |||
4 | #include <string> | ||
5 | #include <string_view> | ||
6 | |||
7 | class Runtime { | ||
8 | public: | ||
9 | |||
10 | static std::string getResourcePath(std::string_view filename); | ||
11 | }; | ||
12 | |||
13 | #endif /* end of include guard: RUNTIME_H_A8DA6E1E */ | ||