コード例 #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
ファイル: Form1.cs プロジェクト: Buck417/Second-Half-CS-3500
 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
ファイル: Form1.cs プロジェクト: Buck417/Second-Half-CS-3500
 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;
 }