mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-11-01 01:07:54 +00:00
45 lines
842 B
Python
45 lines
842 B
Python
from direct.directnotify import DirectNotifyGlobal
|
|
from direct.distributed.DistributedNodeAI import DistributedNodeAI
|
|
|
|
class DistributedLawnDecorAI(DistributedNodeAI):
|
|
notify = DirectNotifyGlobal.directNotify.newCategory("DistributedLawnDecorAI")
|
|
|
|
def getPlot(self):
|
|
pass
|
|
|
|
def setPlot(self, todo0):
|
|
pass
|
|
|
|
def getHeading(self):
|
|
pass
|
|
|
|
def setHeading(self, todo0):
|
|
pass
|
|
|
|
def getPosition(self):
|
|
pass
|
|
|
|
def setPosition(self, todo0, todo1, todo2):
|
|
pass
|
|
|
|
def getOwnerIndex(self):
|
|
pass
|
|
|
|
def setOwnerIndex(self, todo0):
|
|
pass
|
|
|
|
def plotEntered(self):
|
|
pass
|
|
|
|
def removeItem(self):
|
|
pass
|
|
|
|
def setMovie(self, todo0, todo1):
|
|
pass
|
|
|
|
def movieDone(self):
|
|
pass
|
|
|
|
def interactionDenied(self, todo0):
|
|
pass
|
|
|