2015-03-03 16:10:12 -06:00
|
|
|
from direct.directnotify import DirectNotifyGlobal
|
|
|
|
from toontown.parties.DistributedPartyJukeboxActivityBaseAI import DistributedPartyJukeboxActivityBaseAI
|
|
|
|
import PartyGlobals
|
|
|
|
|
|
|
|
class DistributedPartyJukeboxActivityAI(DistributedPartyJukeboxActivityBaseAI):
|
|
|
|
notify = DirectNotifyGlobal.directNotify.newCategory("DistributedPartyJukeboxActivityAI")
|
2015-06-16 12:26:44 -05:00
|
|
|
|
2015-03-03 16:10:12 -06:00
|
|
|
def __init__(self, air, parent, activityTuple):
|
|
|
|
DistributedPartyJukeboxActivityBaseAI.__init__(self, air, parent, activityTuple)
|
|
|
|
self.music = PartyGlobals.PhaseToMusicData
|
2015-06-16 12:26:44 -05:00
|
|
|
|