Lots of shit

This commit is contained in:
2025-06-02 10:23:40 +03:00
parent f1b31c5c3e
commit 42b7d798e1
68 changed files with 11580 additions and 516 deletions

22
apps/Clicker.lua Normal file
View File

@@ -0,0 +1,22 @@
local basalt = require("/lib/basalt")
local main = basalt.getMainFrame()
local cookies = 0
local cookieLabel = main:addLabel()
:setText("Cookies: " .. cookies)
:setPosition(4, 2)
local cookieButton = main:addButton()
:setText("Click for Cookies!")
:setPosition(4, 4)
:setSize(20, 3)
:onClick(function()
cookies = cookies + 1
cookieLabel:setText("Cookies: " .. cookies)
end)
basalt.run()

1
apps/Tester.lua Normal file
View File

@@ -0,0 +1 @@
print("Test")