historical/toontown-classic.git/toontown/fishing/DistributedPondBingoManagerAI.py
2024-01-16 11:20:27 -06:00

30 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