Poodletooth-iLand/toontown/building/DistributedGagshopInteriorAI.py
Master Jumblespeed d882959bfa switch to remote
2015-05-18 22:11:33 -04:00

11 lines
373 B
Python
Executable file

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]