Exemplo n.º 1
0
 private string UpdateTowerInfo(Tower towerSelected)
 {
     string infoMsg = "";
     infoMsg += "\n State: " + towerSelected.GetFormattedState();
     infoMsg += "\n Type: " + towerSelected.GetEffect().GetFormattedEffectType();
     infoMsg += "\n Damage: " + towerSelected.GetZone().GetEffect().GetDamage();
     return infoMsg;
 }