Poodletooth-iLand/toontown/building/DistributedPetshopInteriorAI.py
2015-07-05 19:59:25 -04:00

14 lines
461 B
Python
Executable file

from direct.distributed import DistributedObjectAI
class DistributedPetshopInteriorAI(DistributedObjectAI.DistributedObjectAI):
def __init__(self, block, air, zoneId):
DistributedObjectAI.DistributedObjectAI.__init__(self, air)
self.block = block
self.zoneId = zoneId
def generate(self):
DistributedObjectAI.DistributedObjectAI.generate(self)
def getZoneIdAndBlock(self):
return [self.zoneId, self.block]