Implementation des models

This commit is contained in:
Amaury
2020-12-02 16:29:25 +01:00
parent 9f0c1e337a
commit 80f0899bf1
15 changed files with 223 additions and 26 deletions

View File

@@ -0,0 +1,13 @@
package modele.donnees;
import modele.calculs.Jeu;
public abstract class ElementPhysique extends ObjetGyromide {
public ElementPhysique(Jeu jeu) {
super(jeu);
}
public abstract boolean peutEtreEcrase();
public abstract boolean peutServirDeSupport();
}