Example #1
0
        public void SetStationWorkerDefaultClothes(IEnumerable <Asset> defaultClothes)
        {
            mDefaultWorkerClothes = defaultClothes;

            // For now all the station workers share defaults
            mHairStationWorkers   = new NpcPool <StationWorker>(mDefaultWorkerClothes);
            mMakeupStationWorkers = new NpcPool <StationWorker>(mDefaultWorkerClothes);
            mSewingStationWorkers = new NpcPool <StationWorker>(mDefaultWorkerClothes);
        }
Example #2
0
 public void SetModelDefaultClothes(IEnumerable <Asset> defaultClothes)
 {
     mDefaultModelClothes = defaultClothes;
     mFashionModels       = new NpcPool <FashionModel>(mDefaultModelClothes);
 }