resolaunch/src/common.py

9 lines
124 B
Python

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