historical/toontown-classic.git/panda/direct/leveleditor/ProtoPalette.py

12 lines
227 B
Python
Raw Normal View History

2024-01-16 17:20:27 +00:00
"""
Palette for Prototyping
"""
from .ProtoPaletteBase import *
import os
class ProtoPalette(ProtoPaletteBase):
def __init__(self):
self.dirname = os.path.dirname(__file__)
ProtoPaletteBase.__init__(self)