Exemple #1
0
 public ChariotProject(IUnitFactory<Chariot> chariotFactory)
 {
     Factory = new GenericUnitFactoryAdapter<Chariot>(chariotFactory);
 }
Exemple #2
0
 public SettlerProject(IUnitFactory<Settler> settlerFactory)
 {
     Factory = new GenericUnitFactoryAdapter<Settler>(settlerFactory);
 }
Exemple #3
0
 public ArcherProject(IUnitFactory<Archer> archerFactory)
 {
     Factory = new GenericUnitFactoryAdapter<Archer>(archerFactory);
 }
Exemple #4
0
 public LegionProject(IUnitFactory<Legion> legionFactory)
 {
     Factory = new GenericUnitFactoryAdapter<Legion>(legionFactory);
 }