add core.blank

This commit is contained in:
MihailRis 2024-12-12 23:40:57 +03:00
parent 086c20c370
commit 53cc8d3c7b

View File

@ -234,7 +234,12 @@ static int l_quit(lua::State*) {
return 0;
}
static int l_blank(lua::State*) {
return 0;
}
const luaL_Reg corelib[] = {
{"nop", lua::wrap<l_blank>},
{"get_version", lua::wrap<l_get_version>},
{"new_world", lua::wrap<l_new_world>},
{"open_world", lua::wrap<l_open_world>},