Merge branch 'main' into entities

This commit is contained in:
MihailRis
2024-06-25 18:47:15 +03:00
5 changed files with 111 additions and 14 deletions
+3
View File
@@ -43,6 +43,9 @@ static void create_libs(lua::State* L) {
openlib(L, "player", playerlib);
openlib(L, "time", timelib);
openlib(L, "toml", tomllib);
openlib(L, "vec2", vec2lib);
openlib(L, "vec3", vec3lib);
openlib(L, "vec4", vec4lib);
openlib(L, "world", worldlib);
addfunc(L, "print", lua::wrap<l_print>);