Poodletooth-iLand/toontown/building/DistributedGagshopInteriorAI.py

12 lines
373 B
Python
Raw Permalink Normal View History

2015-11-14 13:28:53 -06:00
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]