Added animation events

This commit is contained in:
2025-06-20 19:26:43 +01:00
parent 44f75b52d0
commit a421069a63
4 changed files with 41 additions and 3 deletions

View File

@ -1,3 +1,4 @@
from .anim import AnimatedObject
import tomllib
class Game:
@ -23,4 +24,7 @@ class Game:
pass
def close(self):
pass
pass
def createAnimObj(self, *args, **kwargs):
return AnimatedObject(self, *args, **kwargs)