Files
Text-Texture-Generator-for-…/properties/__init__.py
2025-09-11 12:12:58 +03:00

18 lines
392 B
Python

"""
Text Texture Generator - Properties Module
This module contains all property group definitions and configuration systems
for the text texture generator addon.
"""
from .property_groups import (
TEXT_TEXTURE_ImageOverlay,
TEXT_TEXTURE_Preset,
TEXT_TEXTURE_Properties
)
__all__ = [
'TEXT_TEXTURE_ImageOverlay',
'TEXT_TEXTURE_Preset',
'TEXT_TEXTURE_Properties',
]