예제 #1
0
파일: Partida.java 프로젝트: h0ffm4n/JSGame
 Partida(Jugador jugadorA, Jugador jugadorB) {
   this.jugadorA = jugadorA;
   this.jugadorB = jugadorB;
   cuartelA = jugadorA.getCuartel();
   cuartelB = jugadorB.getCuartel();
   mazoA = jugadorA.getCartasMazo();
   mazoB = jugadorB.getCartasMazo();
 }