oldschool-toontown/toontown/coghq/LiftConstants.py

9 lines
113 B
Python
Raw Normal View History

2019-11-02 17:27:54 -05:00
Down = 0
Up = 1
def oppositeState(state):
if state is Down:
return Up
else:
return Down