mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-11-01 09:17:54 +00:00
17 lines
554 B
Python
17 lines
554 B
Python
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
|