Package org.javahispano.javacup.modelo

Examples of org.javahispano.javacup.modelo.Comando


     * @param sp
     * @param jugadorRematador
     * @return
     */
    public static Comando pasarCompanneroMasCercano(SituacionPartido sp, int jugadorRematador) {
        Comando c = null;
        int jMasCercano = getAmigoMasCercano(jugadorRematador, sp.misJugadores());
        c=new ComandoGolpearBalon(jugadorRematador,sp.misJugadores()[jMasCercano],getFuerza(sp,jugadorRematador,jMasCercano),false);

        return c;

View Full Code Here

TOP

Related Classes of org.javahispano.javacup.modelo.Comando

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.