9 lines
194 B
Python
9 lines
194 B
Python
import bpy
|
|
from . import UTIL_functions
|
|
|
|
class BBP_PG_virtools_group(bpy.types.PropertyGroup):
|
|
group_name: bpy.props.StringProperty(
|
|
name = "Group Name",
|
|
default = ""
|
|
)
|