Files
multi-user/__init__.py

29 lines
392 B
Python
Raw Normal View History

2019-02-07 17:41:18 +01:00
bl_info = {
"name" : "rcf",
"author" : "CUBE",
"description" : "",
"blender" : (2, 80, 0),
"location" : "",
"warning" : "",
"category" : "Collaboration"
}
2019-03-14 16:44:18 +01:00
import bpy
import os
import sys
2019-04-10 17:01:21 +02:00
from . import operators
from . import ui
2019-02-07 17:57:03 +01:00
2019-02-07 17:41:18 +01:00
def register():
2019-04-10 17:01:21 +02:00
operators.register()
ui.register()
2019-02-07 17:41:18 +01:00
def unregister():
2019-04-10 17:01:21 +02:00
ui.unregister()
operators.unregister()
2019-04-01 16:14:21 +02:00