setup project

This commit is contained in:
Amaury
2020-11-25 12:33:20 +01:00
parent 03b2697d79
commit 159a0a23f2
22 changed files with 613 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
package modele.plateau;
public class Mur extends EntiteStatique {
public Mur(Jeu _jeu) { super(_jeu); }
}