13 lines
598 B
Python
13 lines
598 B
Python
from direct.directnotify import DirectNotifyGlobal
|
|
from toontown.ai import DistributedPhaseEventMgrAI
|
|
|
|
class DistributedTrashcanZeroMgrAI(DistributedPhaseEventMgrAI.DistributedPhaseEventMgrAI):
|
|
"""Distributed Object to tell the client what phase we're in."""
|
|
|
|
notify = DirectNotifyGlobal.directNotify.newCategory(
|
|
'DistributedMailboxZeroMgrAI')
|
|
|
|
def __init__(self, air, startAndEndTimes, phaseDates):
|
|
"""Construct ourself and calc required fields."""
|
|
DistributedPhaseEventMgrAI.DistributedPhaseEventMgrAI.__init__(self, air, startAndEndTimes,phaseDates)
|