mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-11-01 01:07:54 +00:00
11 lines
257 B
Python
11 lines
257 B
Python
"""
|
|
Defines Scene Graph tree UI
|
|
"""
|
|
from SceneGraphUIBase import *
|
|
|
|
class SceneGraphUI(SceneGraphUIBase):
|
|
def __init__(self, parent, editor):
|
|
SceneGraphUIBase.__init__(self, parent, editor)
|
|
|
|
def populateExtraMenu(self):
|
|
pass
|