oscillode/blender_maxwell/node_trees/maxwell_sim_nodes/contracts/trees.py

10 lines
188 B
Python
Raw Normal View History

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()