mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-26 05:02:31 -06:00
11 lines
240 B
Python
11 lines
240 B
Python
|
"""
|
||
|
Defines ObjectMgr
|
||
|
"""
|
||
|
from ObjectMgrBase import *
|
||
|
|
||
|
class ObjectMgr(ObjectMgrBase):
|
||
|
""" ObjectMgr will create, manage, update objects in the scene """
|
||
|
|
||
|
def __init__(self, editor):
|
||
|
ObjectMgrBase.__init__(self, editor)
|