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

10 lines
263 B
Python

"""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()