Poodletooth-iLand/toontown/estate/DistributedChangingStatuaryAI.py
2015-05-24 18:42:26 -05:00

16 lines
553 B
Python
Executable file

from direct.directnotify import DirectNotifyGlobal
from toontown.estate.DistributedStatuaryAI import DistributedStatuaryAI
class DistributedChangingStatuaryAI(DistributedStatuaryAI):
notify = DirectNotifyGlobal.directNotify.newCategory("DistributedChangingStatuaryAI")
def __init__(self, air):
DistributedStatuaryAI.__init__(self, air)
self.air = air
self.growthLevel = -1
def setGrowthLevel(self, growthLevel):
self.growthLevel = growthLevel
def getGrowthLevel(self):
return self.growthLevel