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

8 lines
166 B
Python

"""TaskManagerGlobal module: contains the global task manager"""
__all__ = ['taskMgr']
from . import Task
#: The global task manager.
taskMgr = Task.TaskManager()