multi-user/__init__.py
2019-04-10 17:01:21 +02:00

29 lines
392 B
Python

bl_info = {
"name" : "rcf",
"author" : "CUBE",
"description" : "",
"blender" : (2, 80, 0),
"location" : "",
"warning" : "",
"category" : "Collaboration"
}
import bpy
import os
import sys
from . import operators
from . import ui
def register():
operators.register()
ui.register()
def unregister():
ui.unregister()
operators.unregister()