Esempio n. 1
0
 /// <summary>
 /// sets the game form for the client
 /// </summary>
 /// <param name="form"></param>
 public void setGameForm(Game form)
 {
     checkForm(form);
     this.game = form;
 }
Esempio n. 2
0
 public GameLobby(Proxy proxy)
 {
     InitializeComponent();
     this.proxy = proxy;
     game = new Game(proxy);
 }
Esempio n. 3
0
 public Client()
 {
     game = null;
     lobby = null;
 }