Poodletooth-iLand/toontown/estate/DistributedGagTreeAI.py

18 lines
520 B
Python
Raw Normal View History

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