Example #1
0
 public Client(int _clientId)
 {
     id  = _clientId;
     tcp = new TCP(id);
     udp = new UDP(id);
 }
Example #2
0
 public User(int _id)
 {
     id  = _id;
     udp = new UDP(id);
 }