Poodletooth-iLand/toontown/building/DistributedGagshopInteriorAI.py
2015-03-03 17:10:12 -05:00

11 lines
373 B
Python

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