/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

/**
 *
 * @author felix
 */
public class NaveJugador implements Nave{
    static public void main(String args[]) {
        NaveJugador a = new NaveJugador();
        a.moverPosicion(10, 10);
        a.disparar();
        
    }

    public void moverPosicion(int x, int y) {
        System.out.println("Me movi a " + x + " " + y);
    }
    

    public void disparar() {
        System.out.println("RATATATATATATATTATATTATAT");
    }

}
