Poodletooth-iLand/toontown/safezone/DistributedCheckersAI.py
2015-03-03 17:10:12 -05:00

48 lines
901 B
Python

from direct.directnotify import DirectNotifyGlobal
from direct.distributed.DistributedNodeAI import DistributedNodeAI
class DistributedCheckersAI(DistributedNodeAI):
notify = DirectNotifyGlobal.directNotify.newCategory("DistributedCheckersAI")
def requestExit(self):
pass
def requestBegin(self):
pass
def requestTimer(self):
pass
def requestMove(self, todo0):
pass
def startBeginTimer(self, todo0, todo1):
pass
def gameStart(self, todo0):
pass
def setTableDoId(self, todo0):
pass
def setGameState(self, todo0, todo1):
pass
def setTimer(self, todo0):
pass
def setTurnTimer(self, todo0):
pass
def sendTurn(self, todo0):
pass
def requestWin(self):
pass
def announceWin(self, todo0):
pass
def illegalMove(self):
pass