code: Initial Commit
This commit is contained in:
11
src/GlobalState.hpp
Normal file
11
src/GlobalState.hpp
Normal file
@@ -0,0 +1,11 @@
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
#include <memory>
|
||||
|
||||
struct SGlobalState {
|
||||
std::string cwd;
|
||||
std::string configPath;
|
||||
};
|
||||
|
||||
inline std::unique_ptr<SGlobalState> g_pGlobalState = std::make_unique<SGlobalState>();
|
||||
Reference in New Issue
Block a user