Added documentation for createAnimObj()

This commit is contained in:
2025-06-21 23:03:27 +01:00
parent 4161ec9c5b
commit d897a3744d

View File

@ -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):