oldschool-toontown/toontown/launcher/QuickStartLauncher.py
2021-07-03 22:02:19 -04:00

10 lines
280 B
Python

if __debug__:
from panda3d.core import loadPrcFile
loadPrcFile('etc/Configrc.prc')
else:
import sys
sys.path = ['']
from toontown.launcher.QuickLauncher import QuickLauncher
launcher = QuickLauncher()
launcher.notify.info('Reached end of StartQuickLauncher.py.')