Poodletooth-iLand/toontown/estate/DistributedGagTreeAI.py

18 lines
520 B
Python
Raw Normal View History

2015-03-03 16:10:12 -06:00
from direct.directnotify import DirectNotifyGlobal
from toontown.estate.DistributedPlantBaseAI import DistributedPlantBaseAI
class DistributedGagTreeAI(DistributedPlantBaseAI):
notify = DirectNotifyGlobal.directNotify.newCategory("DistributedGagTreeAI")
2015-05-10 07:00:38 -05:00
def __init__(self, air, gagTrack, gagLevel):
self.air = air
self.track = gagTrack
self.level = level
self.wilted = 0
2015-05-10 06:47:03 -05:00
def setWilted(self, wilted):
2015-05-10 07:00:38 -05:00
self.wilted = wilted
2015-03-03 16:10:12 -06:00
def requestHarvest(self):
pass