mirror of
https://github.com/panda3d/panda3d.git
synced 2026-02-23 16:08:50 -06:00
10 lines
271 B
Python
Executable File
10 lines
271 B
Python
Executable File
from .LevelEditorUIBase import *
|
|
|
|
class LevelEditorUI(LevelEditorUIBase):
|
|
""" Class for Panda3D LevelEditor """
|
|
appversion = '0.1'
|
|
appname = 'Panda3D Level Editor'
|
|
|
|
def __init__(self, editor):
|
|
LevelEditorUIBase.__init__(self, editor)
|