mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-10-31 16:57:54 +00:00
34 lines
671 B
Python
34 lines
671 B
Python
|
from direct.directnotify import DirectNotifyGlobal
|
||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||
|
|
||
|
class DistributedTestObjectAI(DistributedObjectAI):
|
||
|
notify = DirectNotifyGlobal.directNotify.newCategory("DistributedTestObjectAI")
|
||
|
|
||
|
def setParentingRules(self, todo0, todo1):
|
||
|
pass
|
||
|
|
||
|
def setRequiredField(self, todo0):
|
||
|
pass
|
||
|
|
||
|
def setB(self, todo0):
|
||
|
pass
|
||
|
|
||
|
def setBA(self, todo0):
|
||
|
pass
|
||
|
|
||
|
def setBO(self, todo0):
|
||
|
pass
|
||
|
|
||
|
def setBR(self, todo0):
|
||
|
pass
|
||
|
|
||
|
def setBRA(self, todo0):
|
||
|
pass
|
||
|
|
||
|
def setBRO(self, todo0):
|
||
|
pass
|
||
|
|
||
|
def setBROA(self, todo0):
|
||
|
pass
|
||
|
|