initial commit

This commit is contained in:
2025-07-25 11:46:41 +02:00
commit 0973fd48e9
24 changed files with 8851 additions and 0 deletions

34
untitled.p8 Normal file
View File

@@ -0,0 +1,34 @@
pico-8 cartridge // http://www.pico-8.com
version 42
__lua__
function _init()
x=64
y=64
z=false
end
function _update()
if(btn(⬅️))x-=1
if(btn(➡️))x+=1
if(btn(⬆️))y-=1
if(btn(⬇️))y+=1
if(btn(❎))z=not z
if(z) then s=1 else s=0 end
end
function _draw()
cls()
spr(s,x,y)
end
__gfx__
00000000444444440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000445544440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00700700444454440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00077000445544440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00077000444454440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00700700444444440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000444444440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000444444440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000