/** * @author yanababs * * TODO To change the template for this generated type comment go to * Window - Preferences - Java - Code Style - Code Templates */ public interface Soldat { final int DEFAULT_POINTS_ATTAQUE = 10, DEFAULT_POINTS_DEFENSE = 10; public int attaquer(); public void défendre(int force) throws DeadWarriorException; }