2015-03-29 12:45:32 -05:00
|
|
|
from toontown.safezone import Playground
|
2015-03-03 16:10:12 -06:00
|
|
|
from toontown.safezone import SafeZoneLoader
|
|
|
|
|
|
|
|
|
|
|
|
class DLSafeZoneLoader(SafeZoneLoader.SafeZoneLoader):
|
|
|
|
def __init__(self, hood, parentFSM, doneEvent):
|
|
|
|
SafeZoneLoader.SafeZoneLoader.__init__(self, hood, parentFSM, doneEvent)
|
2015-03-29 12:45:32 -05:00
|
|
|
self.playgroundClass = Playground.Playground
|
2015-03-03 16:10:12 -06:00
|
|
|
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'
|