open_toontown_panda3d/direct/src/leveleditor/ProtoPalette.py

12 lines
227 B
Python
Executable File

"""
Palette for Prototyping
"""
from .ProtoPaletteBase import *
import os
class ProtoPalette(ProtoPaletteBase):
def __init__(self):
self.dirname = os.path.dirname(__file__)
ProtoPaletteBase.__init__(self)