oldschool-toontown/toontown/coghq/LiftConstants.py
2019-11-02 18:27:54 -04:00

8 lines
113 B
Python

Down = 0
Up = 1
def oppositeState(state):
if state is Down:
return Up
else:
return Down