Préparation du simulateur.

This commit is contained in:
aminecmi
2015-01-07 10:41:16 +01:00
parent 44db9873c3
commit 72ee8d1655
5 changed files with 72 additions and 32 deletions

View File

@@ -0,0 +1,13 @@
package Objets;
import Cases.CaseAbstraite;
public abstract class ObjetAbstrait {
CaseAbstraite caseAbstraite;
String nom;
public ObjetAbstrait(String nom, CaseAbstraite c) {
this.caseAbstraite = c;
this.nom = nom;
}
}