9 lines
190 B
Python
9 lines
190 B
Python
import bpy
|
|
from bpy.types import PropertyGroup
|
|
from bpy.props import PointerProperty, StringProperty
|
|
from vse_toolbox.file_utils import norm_str
|
|
|
|
|
|
class Tracker(PropertyGroup):
|
|
pass
|
|
|