Merge branch 'main' into devtools

This commit is contained in:
MihailRis
2024-05-13 00:15:14 +03:00
25 changed files with 336 additions and 318 deletions
+1 -1
View File
@@ -34,7 +34,7 @@ static bool processCallback(
try {
return state->eval(*env, src, file) != 0;
} catch (lua::luaerror& err) {
std::cerr << err.what() << std::endl;
logger.error() << err.what();
return false;
}
}
@@ -8,6 +8,8 @@
#include <glm/glm.hpp>
#include <string>
#include <string>
namespace scripting {
using common_func = std::function<dynamic::Value(const std::vector<dynamic::Value>&)>;