Exemplo n.º 1
0
 public GwMatchupObjective(GwMatchupDetails details, GwMatchupMap map, string id, string name, GwMatchupTeam owner)
 {
     Details = details;
     Map     = map;
     Id      = id;
     Name    = name;
     Owner   = owner;
 }
Exemplo n.º 2
0
 public GwMatchupMap(GwMatchupDetails details, string type, List <int> score)
 {
     Details = details;
     Type    = type;
     Score   = new GwMatchupScore(score);
 }