2015-03-03 16:10:12 -06:00
|
|
|
from direct.directnotify import DirectNotifyGlobal
|
|
|
|
from toontown.parties.DistributedPartyActivityAI import DistributedPartyActivityAI
|
|
|
|
|
|
|
|
class DistributedPartyTeamActivityAI(DistributedPartyActivityAI):
|
|
|
|
notify = DirectNotifyGlobal.directNotify.newCategory("DistributedPartyTeamActivityAI")
|
|
|
|
|
|
|
|
def toonJoinRequest(self, todo0):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def toonExitRequest(self, todo0):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def toonSwitchTeamRequest(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def setPlayersPerTeam(self, todo0, todo1):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def setDuration(self, todo0):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def setCanSwitchTeams(self, todo0):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def setState(self, todo0, todo1, todo2):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def setToonsPlaying(self, todo0, todo1):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def setAdvantage(self, todo0):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def switchTeamRequestDenied(self, todo0):
|
|
|
|
pass
|
2015-06-16 12:26:44 -05:00
|
|
|
|