mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-25 12:42:41 -06:00
52 lines
982 B
Python
52 lines
982 B
Python
|
from direct.directnotify import DirectNotifyGlobal
|
||
|
from direct.distributed.DistributedNodeAI import DistributedNodeAI
|
||
|
|
||
|
class DistributedChineseCheckersAI(DistributedNodeAI):
|
||
|
notify = DirectNotifyGlobal.directNotify.newCategory("DistributedChineseCheckersAI")
|
||
|
|
||
|
def requestExit(self):
|
||
|
pass
|
||
|
|
||
|
def requestBegin(self):
|
||
|
pass
|
||
|
|
||
|
def requestMove(self, todo0):
|
||
|
pass
|
||
|
|
||
|
def requestTimer(self):
|
||
|
pass
|
||
|
|
||
|
def requestSeatPositions(self):
|
||
|
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 announceSeatPositions(self, todo0):
|
||
|
pass
|
||
|
|