resolaunch/src/common.py
2019-02-10 13:33:37 +01:00

8 lines
124 B
Python

from enum import Enum
class ClipState(Enum):
NO_CLIP = 0,
NOT_RUNNING = 1,
MOVED = 2,
RUNNING = 3