aboutsummaryrefslogtreecommitdiff
path: root/source/AppConfig.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/AppConfig.hpp')
-rw-r--r--source/AppConfig.hpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/source/AppConfig.hpp b/source/AppConfig.hpp
new file mode 100644
index 0000000..53e84b1
--- /dev/null
+++ b/source/AppConfig.hpp
@@ -0,0 +1,12 @@
+#pragma once
+
+#include <filesystem>
+#include <string>
+
+namespace AppConfig {
+constexpr std::string_view kAppName = "ProjectBrussel";
+// Since kAppName is initialized by a C string literal, we know it's null termianted
+constexpr const char* kAppNameC = kAppName.data();
+
+inline std::string dataDir;
+} // namespace AppConfig