Пример #1
0
 public GameOverForm(AgCubio_View view, int mass, string player_name)
 {
     InitializeComponent();
     name_label.Text = "Name: " + player_name;
     mass_label.Text = "Mass: " + mass.ToString();
     master_view     = view;
 }
Пример #2
0
 public GameOverForm(AgCubio_View view, int mass, string player_name)
 {
     InitializeComponent();
     name_label.Text = "Name: " + player_name;
     mass_label.Text = "Mass: " + mass.ToString();
     master_view = view;
 }
Пример #3
0
 public Form1(AgCubio_View view, bool restart)
 {
     InitializeComponent();
     view.GameHost = game_host_box.Text;
     if (restart) connection_error_label.Visible = true;
     else connection_error_label.Visible = false;
     this.view = view;
 }
Пример #4
0
 public Form1(AgCubio_View view, bool restart)
 {
     InitializeComponent();
     view.GameHost = game_host_box.Text;
     if (restart)
     {
         connection_error_label.Visible = true;
     }
     else
     {
         connection_error_label.Visible = false;
     }
     this.view = view;
 }