Última actividad 1731086631

Revisión 7e0144df74ddfec7b1d8eacc59c4ffdf6559396e

Pyxel-6.sh Sin formato
1import pyxel
2
3pyxel.init(160, 120)
4
5def update():
6 if pyxel.btnp(pyxel.KEY_Q):
7 pyxel.quit()
8
9def draw():
10 pyxel.cls(0)
11 pyxel.rect(10, 10, 20, 20, 11)
12
13pyxel.run(update, draw)