Пример #1
0
 public void setNext(PokerChain forma)
 {
     if (next == null)
     {
         next = forma;
     }
     else
     {
         next.setNext(forma);
     }
 }
Пример #2
0
 public PokerChain(IDJogadores id)
 {
     next = null;
     identificadorDeJogadores = id;
 }