mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-11-01 09:17:54 +00:00
12 lines
410 B
Python
12 lines
410 B
Python
from direct.directnotify import DirectNotifyGlobal
|
|
from toontown.estate.DistributedLawnDecorAI import DistributedLawnDecorAI
|
|
|
|
class DistributedGardenBoxAI(DistributedLawnDecorAI):
|
|
notify = DirectNotifyGlobal.directNotify.newCategory("DistributedGardenBoxAI")
|
|
|
|
def __init__(self, air):
|
|
self.air = air
|
|
self.typeIndex = 0
|
|
|
|
def setTypeIndex(self, index):
|
|
self.typeIndex = index
|