Package modelo.Player

Examples of modelo.Player.Colors


  }

  public void addPlayer(String nombre, int color) {
    color--;
    Colors[] colores = Colors.values();
    Colors eleccion = colores[color];
    partida.addPlayer(nombre, eleccion);
  }
View Full Code Here

TOP

Related Classes of modelo.Player.Colors

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.