Files
checkpoint/src/GlobalState.hpp
2025-04-12 20:06:56 +01:00

12 lines
214 B
C++

#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>();