Exemple #1
0
 public LobbyForm(string playerName)
 {
     InitializeComponent();
     proxy    = new LudoApp.proxy.AccountClient();
     lobby    = new proxy.LobbyClient(new InstanceContext(this));
     rankings = proxy.getRanking();
     players  = proxy.getPlayers();
     addRanking();
     this.playerName = playerName;
     label1.Text     = "Welcome, " + playerName;
 }
Exemple #2
0
 public LogInForm()
 {
     InitializeComponent();
     accProxy = new AccountClient();
 }