Example #1
0
 public void startGame(staff s, game g)
 {
     s.startGame(g);
 }
Example #2
0
 public void removePlayer(staff s, game g, player p)
 {
     s.removePlayer(g, p);
 }
Example #3
0
 public game createGame(staff s)
 {
     return s.createGame();
 }
Example #4
0
 public bool connect(staff s, string pseudo, string password)
 {
     return s.connect(pseudo, password);
 }
Example #5
0
 public void cancelGame(staff s, game g)
 {
     s.cancelGame(g);
 }
Example #6
0
 public void addPlayer(staff s, game g, player p)
 {
     s.addPlayer(g, p);
 }