public ExtraGameManipulator(IGameManipPersistentStorage _thePersistor, ITechsManipulation techker)
 {
     this._persistentStorage = _thePersistor;
     this._techs             = techker;
     this._allTechTypes      = null;
 }
Пример #2
0
 public TechManager(IGameManipPersistentStorage persistor)
 {
     this._persistentStorage = persistor;
     this._allTechs          = new List <TechObject>();
 }