Préparation du simulateur.

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

No files matched your search

+13
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;
}
}