add core:tests_util module & add base_entities test

This commit is contained in:
MihailRis
2024-12-29 22:42:24 +03:00
parent c33a92abd6
commit 4d1f44ada1
3 changed files with 35 additions and 3 deletions
+8
View File
@@ -0,0 +1,8 @@
local util = {}
function util.create_demo_world(generator)
app.reconfig_packs({"base"}, {})
app.new_world("demo", "2019", generator or "core:default")
end
return util