package Capitulo_6;

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

/**
 *
 * @author felix
 */
public interface Nave {
    public static final int vida = 100;
    
    public abstract void moverPosicion(int x, int y);
    public abstract void disparar();
}
