最后活跃于 1731086631

Pyxel-6.py 原始文件
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)