mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-10-31 00:37:54 +00:00
37 lines
739 B
Python
37 lines
739 B
Python
|
from direct.directnotify import DirectNotifyGlobal
|
||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||
|
|
||
|
class DistCogdoGameAI(DistributedObjectAI):
|
||
|
notify = DirectNotifyGlobal.directNotify.newCategory("DistCogdoGameAI")
|
||
|
|
||
|
def setInteriorId(self, todo0):
|
||
|
pass
|
||
|
|
||
|
def setExteriorZone(self, todo0):
|
||
|
pass
|
||
|
|
||
|
def setDifficultyOverrides(self, todo0, todo1):
|
||
|
pass
|
||
|
|
||
|
def setVisible(self):
|
||
|
pass
|
||
|
|
||
|
def setIntroStart(self):
|
||
|
pass
|
||
|
|
||
|
def setToonSad(self, todo0):
|
||
|
pass
|
||
|
|
||
|
def setToonDisconnect(self, todo0):
|
||
|
pass
|
||
|
|
||
|
def setAvatarReady(self):
|
||
|
pass
|
||
|
|
||
|
def setGameStart(self, todo0):
|
||
|
pass
|
||
|
|
||
|
def setGameFinish(self, todo0):
|
||
|
pass
|
||
|
|