historical/toontown-classic.git/panda/direct/task/TaskManagerGlobal.py

9 lines
166 B
Python
Raw Normal View History

2024-01-16 11:20:27 -06:00
"""TaskManagerGlobal module: contains the global task manager"""
__all__ = ['taskMgr']
from . import Task
#: The global task manager.
taskMgr = Task.TaskManager()