changement de beaucoup de class et ajout de Mouvement

This commit is contained in:
2024-05-08 17:40:06 +02:00
parent 135e97d22b
commit 5743206062
7 changed files with 107 additions and 81 deletions

View File

@@ -9,15 +9,14 @@ public class Personnage {
private int size;
protected int[] coordinate;
public Items item;
protected ArrayList<int[]> CoordinateSnake;
private ArrayList<Effects> effectsList;
protected Personnage(int size, int[] coordinate) {
this.coordinate = coordinate;
this.size = size;
}
public int[] getCoordinate() {
return coordinate;
}