mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-10-31 16:57:54 +00:00
16 lines
553 B
Python
Executable file
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
|