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