質問編集履歴

1

回答者からのご指摘を受けてです。

2021/01/16 14:51

投稿

NayamiMondai
NayamiMondai

スコア28

test CHANGED
File without changes
test CHANGED
@@ -27,3 +27,39 @@
27
27
 
28
28
 
29
29
  ご教授お願い致します。
30
+
31
+
32
+
33
+ import pyxel
34
+
35
+
36
+
37
+ class App:
38
+
39
+ def __init__(self):
40
+
41
+ pyxel.init(160, 120, caption="Hello Pyxel")
42
+
43
+ pyxel.image(0).load(0, 0, "assets/cat_16x16.png")
44
+
45
+ pyxel.run(self.update, self.draw)
46
+
47
+
48
+
49
+ def update(self):
50
+
51
+ if pyxel.btnp(pyxel.KEY_Q):
52
+
53
+ pyxel.quit()
54
+
55
+
56
+
57
+ def draw(self):
58
+
59
+ pyxel.cls(0)
60
+
61
+ pyxel.blt(75, 45, 0, 0, 0, 16, 16)
62
+
63
+
64
+
65
+ App()