Example #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;
 }
Example #2
0
 public GameLobby(Proxy proxy)
 {
     InitializeComponent();
     this.proxy = proxy;
     game = new Game(proxy);
 }
Example #3
0
 public Client()
 {
     game = null;
     lobby = null;
 }