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