mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-11-01 09:17:54 +00:00
21 lines
537 B
Python
21 lines
537 B
Python
from direct.directnotify import DirectNotifyGlobal
|
|
from toontown.estate.DistributedLawnDecorAI import DistributedLawnDecorAI
|
|
|
|
class DistributedGardenPlotAI(DistributedLawnDecorAI):
|
|
notify = DirectNotifyGlobal.directNotify.newCategory("DistributedGardenPlotAI")
|
|
|
|
def plantFlower(self, todo0, todo1):
|
|
pass
|
|
|
|
def plantGagTree(self, todo0, todo1):
|
|
pass
|
|
|
|
def plantStatuary(self, todo0):
|
|
pass
|
|
|
|
def plantToonStatuary(self, todo0, todo1):
|
|
pass
|
|
|
|
def plantNothing(self, todo0):
|
|
pass
|
|
|