- Restablert el exemplet de game.lua
- Ficat Makefile per a tots, falta provar el de mac
- Bàsicament, açò es per fer una release de binaris (fill de osiris).
This commit is contained in:
2023-09-07 10:46:38 +02:00
parent b0446f40a1
commit b2a96309e5
4 changed files with 46 additions and 3 deletions

View File

@@ -1 +1,20 @@
/Users/sergio/Gitea/miniascii_jaildoc/miniascii/demos/ticker.lua
function init()
mode(0)
cls()
play("o4v5l1crcl4dcferl1crcl4dcgfr")
end
function update()
cls()
locate(0,0)
if mousebutton(1) then
print("Has pulsat el boto esquerre")
elseif mousebutton(2) then
print("Has pulsat el boto del mig")
elseif mousebutton(3) then
print("Has pulsat el boto dret")
else
print("No has pulsat cap boto")
end
end