mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-20 05:54:54 -04:00
8 lines
131 B
Python
8 lines
131 B
Python
"""TaskManagerGlobal module: contains the global task manager"""
|
|
|
|
__all__ = ['taskMgr']
|
|
|
|
import Task
|
|
|
|
taskMgr = Task.TaskManager()
|