Initial commit.
This commit is contained in:
commit
cb0391ce80
56 changed files with 3485 additions and 0 deletions
24
Shared/Paths.h
Normal file
24
Shared/Paths.h
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
#pragma once
|
||||
|
||||
#include <filesystem>
|
||||
#include <iostream>
|
||||
|
||||
#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();
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue