code: Initial Commit

This commit is contained in:
Vaxry
2025-04-12 20:06:56 +01:00
parent cf925610f4
commit fdc616ac69
23 changed files with 1349 additions and 0 deletions

11
src/GlobalState.hpp Normal file
View 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>();