mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-23 11:42:39 -06:00
11 lines
373 B
Python
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]
|