Renamed
This commit is contained in:
@@ -0,0 +1 @@
|
||||
#include <boundard.hpp>
|
||||
+2
-2
@@ -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
@@ -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
@@ -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
@@ -1,6 +1,6 @@
|
||||
#include <game.hpp>
|
||||
|
||||
namespace openceg {
|
||||
namespace boundard {
|
||||
|
||||
Game::Game() { id_cnt = 0; }
|
||||
Game::~Game() = default;
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
#include <openceg.hpp>
|
||||
+2
-2
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user