Example #1
0
 public HandShake(Clients clients, Rooms rooms)
 {
     this.clients = clients;
     this.rooms   = rooms;
 }
Example #2
0
 public Game(Rooms rooms)
 {
     this.rooms = rooms;
 }
 public CommandDispacher(Clients clients)
 {
     this.clients = clients;
     rooms        = new Rooms();
     new Thread(new ThreadStart(StartDispacher)).Start();
 }