mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-11-01 01:07:54 +00:00
15 lines
412 B
Python
15 lines
412 B
Python
from direct.directnotify import DirectNotifyGlobal
|
|
from toontown.estate.DistributedLawnDecorAI import DistributedLawnDecorAI
|
|
|
|
class DistributedStatuaryAI(DistributedLawnDecorAI):
|
|
notify = DirectNotifyGlobal.directNotify.newCategory("DistributedStatuaryAI")
|
|
|
|
def setTypeIndex(self, todo0):
|
|
pass
|
|
|
|
def setWaterLevel(self, todo0):
|
|
pass
|
|
|
|
def setGrowthLevel(self, todo0):
|
|
pass
|
|
|