45 lines
893 B
Python
45 lines
893 B
Python
from direct.directnotify import DirectNotifyGlobal
|
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
|
|
|
class DistributedPartyActivityAI(DistributedObjectAI):
|
|
notify = DirectNotifyGlobal.directNotify.newCategory("DistributedPartyActivityAI")
|
|
|
|
def setX(self, todo0):
|
|
pass
|
|
|
|
def setY(self, todo0):
|
|
pass
|
|
|
|
def setH(self, todo0):
|
|
pass
|
|
|
|
def setPartyDoId(self, todo0):
|
|
pass
|
|
|
|
def toonJoinRequest(self):
|
|
pass
|
|
|
|
def toonExitRequest(self):
|
|
pass
|
|
|
|
def toonExitDemand(self):
|
|
pass
|
|
|
|
def toonReady(self):
|
|
pass
|
|
|
|
def joinRequestDenied(self, todo0):
|
|
pass
|
|
|
|
def exitRequestDenied(self, todo0):
|
|
pass
|
|
|
|
def setToonsPlaying(self, todo0):
|
|
pass
|
|
|
|
def setState(self, todo0, todo1):
|
|
pass
|
|
|
|
def showJellybeanReward(self, todo0, todo1, todo2):
|
|
pass
|
|
|