historical/toontown-classic.git/panda/direct/showbase/InputStateGlobal.py

11 lines
263 B
Python
Raw Normal View History

2024-01-16 17:20:27 +00:00
"""instantiate global InputState object"""
__all__ = ['inputState']
# This file had to be separated from MessengerGlobal to resolve a
# circular include dependency with DirectObject.
from direct.controls import InputState
inputState = InputState.InputState()