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