10 lines
127 B
Python
10 lines
127 B
Python
from enum import Enum
|
|
|
|
|
|
class Layer(Enum):
|
|
descriptor = 1
|
|
definition = 2
|
|
behavior = 3
|
|
geometry = 4
|
|
all = 5
|