Esempio n. 1
0
 public MensajeBomba(eOwn owner, eTipoBomba bomba, int posX, int posY)
 {
     tipo       = eTipoMensaje.Bomba;
     this.owner = owner;
     this.bomba = bomba;
     this.posX  = posX;
     this.posY  = posY;
 }
Esempio n. 2
0
 public Player(ePlayer nombre, TcpClient tcpCliente)
 {
     this.nombre     = nombre;
     this.tcpCliente = tcpCliente;
     bomba           = eTipoBomba.Bomba1;
 }
Esempio n. 3
0
 public Player(ePlayer nombre)
 {
     this.nombre = nombre;
     bomba       = eTipoBomba.Bomba1;
 }