Example #1
0
 public GameLobbyScreen(int screenHeight, int screenWidth)
     : base(screenHeight, screenWidth)
 {
     this.comms = new ServerGameLobbyComms("THE BOSSS (server man)");
     this.comms.tryCreateComms("127.0.0.1");
     initaliseGUI();
 }
Example #2
0
 public GameLobbyScreen(int screenHeight, int screenWidth, GameLobbyComms comms)
     : base(screenHeight, screenWidth)
 {
     this.comms = comms;
     initaliseGUI();
 }