Files
orni-attack/source/core/system/director.hpp
T
2025-12-03 09:42:45 +01:00

21 lines
473 B
C++

#pragma once
#include <string>
#include <vector>
class Director {
public:
explicit Director(std::vector<std::string> const& args);
~Director();
auto run() -> int; // Main game loop
private:
std::string executable_path_;
std::string system_folder_;
static auto checkProgramArguments(std::vector<std::string> const& args)
-> std::string;
void createSystemFolder(const std::string& folder);
};