Poodletooth-iLand/toontown/coghq/LiftConstants.py
Master Jumblespeed d882959bfa switch to remote
2015-05-18 22:11:33 -04:00

8 lines
113 B
Python
Executable file

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