PythonRMV/pyrmv/enums/selection_mode.py
2022-09-28 15:12:41 +02:00

11 lines
229 B
Python

from enum import auto
from .auto_name import AutoName
class SelectionMode(AutoName):
"""Enumeration used to declare location selection modes."""
SLCT_A = auto()
"Selectable"
SLCT_N = auto()
"Not selectable"