Ejemplo n.º 1
0
 private void SetFortInfo(String id, Label label, FortMapper map)
 {
     Fort fort = map.FortInfo(id);
     if (fort == null)
     {
         label.Text = "-";
     }
     else
     {
         label.Text = fort.GuildName;
     }
 }