Poodletooth-iLand/toontown/coghq/LiftConstants.py
2015-11-14 14:28:53 -05:00

8 lines
113 B
Python

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