mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-11-01 17:27:54 +00:00
36 lines
739 B
Python
36 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
|
|
|