Exemplo n.º 1
0
 public Wait_Game_form()
 {
     InitializeComponent();
     _clientStream = null;
     _GameWin      = null;
     _mf           = null;
 }
Exemplo n.º 2
0
 public Join_form()
 {
     InitializeComponent();
     _clientStream = null;
     _roomsId      = new List <string>();
     _currId       = "";
     _waitWin      = null;
     _mf           = null;
 }
Exemplo n.º 3
0
 public Game_form()
 {
     InitializeComponent();
     _count               = 1;
     _questionNo          = 0;
     _score               = 0;
     _ans                 = "1";
     _questionTime        = 0;
     _wait_win            = null;
     _mf                  = null;
     correctLabel.Visible = false;
 }
Exemplo n.º 4
0
 public void setGame(Game_form GameWin, Menu_form mf)
 {
     this._GameWin = GameWin;
     this._GameWin.setMenuWin(mf);
 }
Exemplo n.º 5
0
 public void setMenuForm(Menu_form mf)
 {
     this._mf = mf;
 }
Exemplo n.º 6
0
 public void setMenuWin(Menu_form mf)
 {
     this._mf = mf;
 }