diff --git a/src/gameUtils/base.py b/src/gameUtils/base.py index ba4f4f5..a437190 100644 --- a/src/gameUtils/base.py +++ b/src/gameUtils/base.py @@ -38,6 +38,14 @@ class Game: pass def createAnimObj(self, *args, **kwargs): + """ + Creates an animated object. + + Args: + objectID (str): The ID of the object. + baseFrame (str): The path to the base frame. + """ + return AnimatedObject(self, *args, **kwargs) def timeout(self, id: str, delay: float):