Poodletooth-iLand/toontown/estate/DistributedGardenAI.py
2015-05-10 07:00:38 -05:00

12 lines
414 B
Python

from direct.directnotify import DirectNotifyGlobal
from direct.distributed.DistributedObjectAI import DistributedObjectAI
class DistributedGardenAI(DistributedObjectAI):
notify = DirectNotifyGlobal.directNotify.newCategory("DistributedGardenAI")
def __init__(self, air):
self.air = air
self.props = []
def sendNewProp(self, prop, x, y, z):
self.props.append([prop, x, y, z])