Ejemplo n.º 1
0
 public BattleReport(Village village, string tribalWarsTimeNotation, bool isFullyLooted)
 {
     this.versusVillage = village;
     this.timeOfBattle  = ConvertToDateTime(tribalWarsTimeNotation);
     this.isFullHaul    = isFullyLooted;
 }
Ejemplo n.º 2
0
 public BattleReport(Village village, DateTime time, bool isFullyLooted)
 {
     this.versusVillage = village;
     this.timeOfBattle  = time;
     this.isFullHaul    = isFullyLooted;
 }