historical/toontown-classic.git/panda/direct/leveleditor/ProtoPalette.py
2024-01-16 11:20:27 -06:00

11 lines
227 B
Python

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