historical/toontown-classic.git/panda/direct/leveleditor/AnimMgr.py
2024-01-16 11:20:27 -06:00

10 lines
230 B
Python

"""
Defines AnimMgr
"""
from .AnimMgrBase import *
class AnimMgr(AnimMgrBase):
""" Animation will create, manage, update animations in the scene """
def __init__(self, editor):
AnimMgrBase.__init__(self, editor)