1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-07-02 16:38:41 +00:00

Create Lua frontend UI code

This commit is contained in:
v-rob 2024-01-23 22:54:45 -08:00
parent abfb319e9b
commit 9cc73f16f0
13 changed files with 1646 additions and 1 deletions

View file

@ -2,6 +2,7 @@
local scriptpath = core.get_builtin_path()
local commonpath = scriptpath .. "common" .. DIR_DELIM
local gamepath = scriptpath .. "game".. DIR_DELIM
local uipath = scriptpath .. "ui" .. DIR_DELIM
-- Shared between builtin files, but
-- not exposed to outer context
@ -39,6 +40,7 @@ dofile(gamepath .. "hud.lua")
dofile(gamepath .. "knockback.lua")
dofile(gamepath .. "async.lua")
dofile(gamepath .. "death_screen.lua")
dofile(uipath .. "init.lua")
core.after(0, builtin_shared.cache_content_ids)