This commit is contained in:
wcjbr
2026-08-16 13:34:42 +08:00
parent d36fd6d2ee
commit 07aeced2e4
17 changed files with 40 additions and 40 deletions
+1
View File
@@ -0,0 +1 @@
#include <boundard.hpp>
+2 -2
View File
@@ -8,7 +8,7 @@
#include <string>
#include <vector>
namespace openceg {
namespace boundard {
namespace {
std::string lowercase(std::string value) {
@@ -320,4 +320,4 @@ const std::string& ConfigLoader::last_error() const {
return last_error_;
}
} // namespace openceg
} // namespace boundard
+3 -3
View File
@@ -7,9 +7,9 @@
#include <thread>
#include <vector>
#include <openceg.hpp>
#include <boundard.hpp>
namespace openceg {
namespace boundard {
int run_engine(int argc, char** argv, const char* default_config_path) {
std::string config_path = default_config_path != nullptr ? default_config_path : "config.ceg";
@@ -114,4 +114,4 @@ int run_engine(int argc, char** argv, const char* default_config_path) {
return 0;
}
} // namespace openceg
} // namespace boundard
+1 -1
View File
@@ -1,5 +1,5 @@
#include <engine.hpp>
int main(int argc, char** argv) {
return openceg::run_engine(argc, argv);
return boundard::run_engine(argc, argv);
}
+1 -1
View File
@@ -1,6 +1,6 @@
#include <game.hpp>
namespace openceg {
namespace boundard {
Game::Game() { id_cnt = 0; }
Game::~Game() = default;
-1
View File
@@ -1 +0,0 @@
#include <openceg.hpp>
+2 -2
View File
@@ -12,7 +12,7 @@
#include <stdexcept>
#include <vector>
namespace openceg::render {
namespace boundard::render {
namespace {
@@ -1337,4 +1337,4 @@ void Renderer::Impl::destroy() {
initialized = false;
}
} // namespace openceg::render
} // namespace boundard::render