18 lines
No EOL
395 B
Python
18 lines
No EOL
395 B
Python
from .readthedocs import KH_OT_readthedocs
|
|
from .export2godot import KH_OT_export2godot
|
|
|
|
classes = (
|
|
KH_OT_readthedocs,
|
|
KH_OT_export2godot
|
|
)
|
|
|
|
|
|
def register_operators():
|
|
from bpy.utils import register_class
|
|
for cls in classes:
|
|
register_class(cls)
|
|
|
|
def unregister_operators():
|
|
from bpy.utils import unregister_class
|
|
for cls in classes:
|
|
unregister_class(cls) |