public GameOver(String message, String player, Game game, Landing landing) { InitializeComponent(); this.message.Text = message; this.game = game; this.landing = landing; this.player = player; }
public Game(String playerName, Landing landing) { this.server = new ServiceReference1.ECCI_GamePortClient(); this.server.resetGame(); this.landing = landing; InitializeComponent(); if (!string.IsNullOrEmpty(playerName)) { player_name_label.Text = playerName; } tries_count.Text = server.getTries(); word_label.Text = server.getWord(); }
public Records(Landing landing) { InitializeComponent(); this.landing = landing; this.fillTable(); }