ajout d'environnement et modification personnages

This commit is contained in:
2024-05-06 08:37:54 +02:00
parent ed2a7633ab
commit a303bfbc86
6 changed files with 55 additions and 14 deletions

View File

@@ -1,7 +1,11 @@
package personnages;
package Personnages;
public class Player extends Characters {
public Player(int[] size) {
super(size);
public Player() {
}
public Integer[] changeCoordinate() {
return null;
}
}