- [NEW] 'app' module

- [NEW] 'editor' module
- [NEW] 'msgbox' module
- [NEW] 'score' module
- [NEW] 'ui' module
- [NEW] 'util' module
This commit is contained in:
2025-06-20 13:50:07 +02:00
parent bbbf9d0c50
commit ddebcfa47a
11 changed files with 400 additions and 48 deletions

16
data/app.lua Normal file
View File

@@ -0,0 +1,16 @@
app = {
update = nil,
stack = {},
push = function(func)
table.insert(app.stack, mini.update)
mini.update = func
end,
pop = function()
if #app.stack > 0 then
mini.update = table.remove(app.stack)
end
end,
}