Exemplo n.º 1
0
 public void setNext(PokerChain forma)
 {
     if (next == null)
     {
         next = forma;
     }
     else
     {
         next.setNext(forma);
     }
 }
Exemplo n.º 2
0
 public PokerChain(IDJogadores id)
 {
     next = null;
     identificadorDeJogadores = id;
 }