oldschool-toontown/toontown/launcher/QuickStartLauncher.py

11 lines
280 B
Python
Raw Permalink Normal View History

if __debug__:
from panda3d.core import loadPrcFile
loadPrcFile('etc/Configrc.prc')
else:
import sys
sys.path = ['']
2019-11-02 17:27:54 -05:00
from toontown.launcher.QuickLauncher import QuickLauncher
launcher = QuickLauncher()
launcher.notify.info('Reached end of StartQuickLauncher.py.')