mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-26 13:12:30 -06:00
49 lines
901 B
Python
49 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
|
||
|
|