Beispiel #1
0
 public Evento(int tipo, string mac, ValorFicha ficha, bool punta)
 {
     jugador    = mac;
     this.tipo  = tipo;
     this.ficha = ficha;
     this.punta = punta;
 }
Beispiel #2
0
 public Ficha(ValorFicha v, bool inv)
 {
     token = "-1";
     if (inv)
     {
         entero_uno = v.entero_dos;
         entero_dos = v.entero_uno;
     }
     else
     {
         entero_uno = v.entero_uno;
         entero_dos = v.entero_dos;
     }
 }
Beispiel #3
0
 public void agregarFicha(ValorFicha f)
 {
     fichas.Add(f);
 }