31 lines
709 B
Python
31 lines
709 B
Python
|
from direct.directnotify import DirectNotifyGlobal
|
||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||
|
|
||
|
class DistributedPondBingoManagerAI(DistributedObjectAI):
|
||
|
notify = DirectNotifyGlobal.directNotify.newCategory("DistributedPondBingoManagerAI")
|
||
|
|
||
|
def setPondDoId(self, todo0):
|
||
|
pass
|
||
|
|
||
|
def updateGameState(self, todo0, todo1):
|
||
|
pass
|
||
|
|
||
|
def setCardState(self, todo0, todo1, todo2, todo3):
|
||
|
pass
|
||
|
|
||
|
def setState(self, todo0, todo1):
|
||
|
pass
|
||
|
|
||
|
def cardUpdate(self, todo0, todo1, todo2, todo3):
|
||
|
pass
|
||
|
|
||
|
def enableBingo(self):
|
||
|
pass
|
||
|
|
||
|
def handleBingoCall(self, todo0):
|
||
|
pass
|
||
|
|
||
|
def setJackpot(self, todo0):
|
||
|
pass
|
||
|
|