mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-25 12:42:41 -06:00
13 lines
601 B
Python
13 lines
601 B
Python
|
from toontown.safezone import DLPlayground
|
||
|
from toontown.safezone import SafeZoneLoader
|
||
|
|
||
|
|
||
|
class DLSafeZoneLoader(SafeZoneLoader.SafeZoneLoader):
|
||
|
def __init__(self, hood, parentFSM, doneEvent):
|
||
|
SafeZoneLoader.SafeZoneLoader.__init__(self, hood, parentFSM, doneEvent)
|
||
|
self.playgroundClass = DLPlayground.DLPlayground
|
||
|
self.musicFile = 'phase_8/audio/bgm/DL_nbrhood.ogg'
|
||
|
self.activityMusicFile = 'phase_8/audio/bgm/DL_SZ_activity.ogg'
|
||
|
self.dnaFile = 'phase_8/dna/donalds_dreamland_sz.pdna'
|
||
|
self.safeZoneStorageDNAFile = 'phase_8/dna/storage_DL_sz.pdna'
|