This commit is contained in:
2025-10-17 08:54:58 -07:00
commit fb77ed8c76
13 changed files with 1416 additions and 0 deletions

8
apps/adventure.lua Normal file
View File

@@ -0,0 +1,8 @@
local compat = require("libs.compat")
local window = require("libs.window")
local x, y = term.getSize()
local win = window.create("Adventure", x / 1.4, y / 1.4, x / 2 - ((x / 1.4) / 2), y / 2 - ((y / 1.5) / 2))
sleep()
compat.runFile("/rom/programs/fun/adventure.lua", win)
sleep(5)
win.close()