Poodletooth-iLand/toontown/cogdominium/SuitPlannerCogdoInteriorAI.py

11 lines
518 B
Python
Raw Normal View History

2015-03-03 16:10:12 -06:00
from toontown.building.SuitPlannerInteriorAI import SuitPlannerInteriorAI
class SuitPlannerCogdoInteriorAI(SuitPlannerInteriorAI):
def __init__(self, cogdoLayout, bldgLevel, bldgTrack, zone):
self._cogdoLayout = cogdoLayout
SuitPlannerInteriorAI.__init__(self, self._cogdoLayout.getNumGameFloors(), bldgLevel, bldgTrack, zone)
def _genSuitInfos(self, numFloors, bldgLevel, bldgTrack):
SuitPlannerInteriorAI._genSuitInfos(self, self._cogdoLayout.getNumFloors(), bldgLevel, bldgTrack)