refactor: 'lua' namespace expansion

This commit is contained in:
MihailRis
2024-06-11 03:37:35 +03:00
parent 7973a9c32b
commit 0647bc6f90
26 changed files with 613 additions and 723 deletions
+9
View File
@@ -0,0 +1,9 @@
#include "lua_commons.hpp"
#include "../../../debug/Logger.hpp"
static debug::Logger logger("lua");
void lua::log_error(const std::string& text) {
logger.error() << text;
}