13 lines
208 B
Python
13 lines
208 B
Python
"""
|
|
Utility helpers for BasedPlayblast.
|
|
|
|
Grouped here so Blender version/compatibility helpers stay isolated from the
|
|
main add-on module.
|
|
"""
|
|
|
|
from . import version, compat
|
|
|
|
__all__ = ["version", "compat"]
|
|
|
|
|