Poodletooth-iLand/toontown/estate/DistributedFlowerAI.py
Master Jumblespeed d882959bfa switch to remote
2015-05-18 22:11:33 -04:00

17 lines
554 B
Python
Executable file

from direct.directnotify import DirectNotifyGlobal
from toontown.estate.DistributedPlantBaseAI import DistributedPlantBaseAI
class DistributedFlowerAI(DistributedPlantBaseAI):
notify = DirectNotifyGlobal.directNotify.newCategory("DistributedFlowerAI")
def __init__(self, air, species, variety):
self.air = air
self.species = species
self.variety = variety
self.typeIndex = None
def setTypeIndex(self, index):
self.typeIndex = index
def setVariety(self, variety):
self.variety = variety