We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef648ee commit cd0ea50Copy full SHA for cd0ea50
1 file changed
spritePro/cli.py
@@ -39,7 +39,9 @@ def main():
39
40
41
class MainScene(s.Scene):
42
- def on_enter(self, context):
+ def __init__(self):
43
+ super().__init__()
44
+
45
self.player = s.Sprite(
46
f"{IMAGES_DIR}/player.png",
47
(64, 64),
@@ -48,6 +50,9 @@ def on_enter(self, context):
48
50
scene=self,
49
51
)
52
53
+ def on_enter(self, context):
54
+ pass
55
56
def on_exit(self):
57
pass
58
0 commit comments