public void ShowStreetPanel(Street street) { if (street != null) { ActionWindow window = new ActionWindow(); window.Show(); window.ShowStreetPanel(street); } }
public void ShowDisaster(Disaster disaster) { if (disaster != null) { ActionWindow window = new ActionWindow(); window.Show(); window.ShowDisaster(disaster); } }
public void ShowOffer(Offer offer) { if (offer != null && offer.IsValid) { ActionWindow window = new ActionWindow(); window.Show(); window.ShowOffer(offer); } }
public void ShowWinWindow(Player winner) { if (winner != null) { ActionWindow window = new ActionWindow(); window.Width = 570; window.Show(); window.ShowWinner(winner); } }