historical/toontown-classic.git/toontown/coghq/SellbotHQExterior.py
2024-01-16 11:20:27 -06:00

13 lines
464 B
Python

from direct.directnotify import DirectNotifyGlobal
from toontown.coghq import CogHQExterior
class SellbotHQExterior(CogHQExterior.CogHQExterior):
notify = DirectNotifyGlobal.directNotify.newCategory('SellbotHQExterior')
def enter(self, requestStatus):
CogHQExterior.CogHQExterior.enter(self, requestStatus)
self.loader.hood.startSky()
def exit(self):
self.loader.hood.stopSky()
CogHQExterior.CogHQExterior.exit(self)