changement de l'ordre des fichiers

This commit is contained in:
2024-05-22 12:43:38 +02:00
parent 08a7333db2
commit e04dd65ef3
14 changed files with 92 additions and 84 deletions

View File

@@ -1,21 +1,20 @@
import Display.Terminal;
import Environnements.Map;
import Objets.Items;
import Personnages.Personnage;
import Personnages.Player;
import environnements.Map;
import game.Terminal;
import personnages.Personnage;
import personnages.Player;
import tests.*;
public class Main {
public static void main(String[] args) {
Personnage.n = 2;
Map map = new Map(12, 30);
map.addObjects(Items.FRAISE, 5, 5);
Personnage[] personnages = new Personnage[] {
new Player(new int[] {0, 0}, "Phillipe")
new Player(new int[] {0, 0}, "Philippe Etchebest"),
new Player(new int[] {19, 19}, "Luke Skywalker")
};
Map map = new Map(20, 20);
new Terminal(map, personnages);
}
}