mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-11-01 01:07:54 +00:00
30 lines
688 B
Python
30 lines
688 B
Python
from direct.directnotify import DirectNotifyGlobal
|
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
|
|
|
class DistributedTargetAI(DistributedObjectAI):
|
|
notify = DirectNotifyGlobal.directNotify.newCategory("DistributedTargetAI")
|
|
|
|
def setPosition(self, todo0, todo1, todo2):
|
|
pass
|
|
|
|
def setState(self, todo0, todo1, todo2):
|
|
pass
|
|
|
|
def setReward(self, todo0):
|
|
pass
|
|
|
|
def setResult(self, todo0):
|
|
pass
|
|
|
|
def setBonus(self, todo0):
|
|
pass
|
|
|
|
def setCurPinballScore(self, todo0, todo1, todo2):
|
|
pass
|
|
|
|
def setPinballHiScorer(self, todo0):
|
|
pass
|
|
|
|
def setPinballHiScore(self, todo0):
|
|
pass
|
|
|