#pragma once #include #include #ifndef APP_NAME # define APP_NAME ArtifactEngine #endif #define TOSTRING(x) #x #define GAME TOSTRING(APP_NAME) namespace Artifact { using Path = std::filesystem::path; Path getDataPath(); Path getClientConfigPath(); Path getServerConfigPath(); }