PythonRMV/pyrmv/enums/selection_mode.py

15 lines
295 B
Python
Raw Normal View History

2022-09-28 16:12:41 +03:00
from enum import auto
from .auto_name import AutoName
class SelectionMode(AutoName):
2022-10-05 13:16:25 +03:00
"""Enumeration used to declare location selection modes.
* SLCT_A - Selectable
* SLCT_N - Not selectable
"""
2022-09-28 16:12:41 +03:00
SLCT_A = auto()
"Selectable"
SLCT_N = auto()
"Not selectable"