10 lines
188 B
Python
10 lines
188 B
Python
|
import enum
|
||
|
|
||
|
from ....utils.blender_type_enum import (
|
||
|
BlenderTypeEnum, append_cls_name_to_values
|
||
|
)
|
||
|
|
||
|
@append_cls_name_to_values
|
||
|
class TreeType(BlenderTypeEnum):
|
||
|
MaxwellSim = enum.auto()
|