Poodletooth-iLand/toontown/estate/DistributedLawnDecorAI.py
2015-05-10 06:47:03 -05:00

32 lines
663 B
Python

from direct.directnotify import DirectNotifyGlobal
from direct.distributed.DistributedNodeAI import DistributedNodeAI
class DistributedLawnDecorAI(DistributedNodeAI):
notify = DirectNotifyGlobal.directNotify.newCategory("DistributedLawnDecorAI")
def setPlot(self, plot):
pass
def setHeading(self, h):
pass
def setPosition(self, x, y, z):
pass
def setOwnerIndex(self, index):
pass
def plotEntered(self):
pass
def removeItem(self):
pass
def setMovie(self, todo0, todo1):
pass
def movieDone(self):
pass
def interactionDenied(self, todo0):
pass