diff --git a/code/code.iml b/code/code.iml index fb8e866..95d012e 100644 --- a/code/code.iml +++ b/code/code.iml @@ -3,10 +3,20 @@ + + + + + + + + + + \ No newline at end of file diff --git a/code/ressources/image/oui.jpg b/code/ressources/image/oui.jpg deleted file mode 100644 index d62309a..0000000 Binary files a/code/ressources/image/oui.jpg and /dev/null differ diff --git a/code/ressources/image/personnage/Perso1.1.png b/code/ressources/image/personnage/Perso1.1.png deleted file mode 100644 index cce8c50..0000000 Binary files a/code/ressources/image/personnage/Perso1.1.png and /dev/null differ diff --git a/code/ressources/image/personnage/Perso1.2.png b/code/ressources/image/personnage/Perso1.2.png deleted file mode 100644 index ad14e8a..0000000 Binary files a/code/ressources/image/personnage/Perso1.2.png and /dev/null differ diff --git a/code/ressources/image/personnage/Perso1.3.png b/code/ressources/image/personnage/Perso1.3.png deleted file mode 100644 index 018e4d6..0000000 Binary files a/code/ressources/image/personnage/Perso1.3.png and /dev/null differ diff --git a/code/ressources/image/personnage/Perso1.4.png b/code/ressources/image/personnage/Perso1.4.png deleted file mode 100644 index 4edc99d..0000000 Binary files a/code/ressources/image/personnage/Perso1.4.png and /dev/null differ diff --git a/code/ressources/image/personnage/Perso1.5.png b/code/ressources/image/personnage/Perso1.5.png deleted file mode 100644 index 7b9328f..0000000 Binary files a/code/ressources/image/personnage/Perso1.5.png and /dev/null differ diff --git a/code/ressources/image/personnage/Perso1.6.png b/code/ressources/image/personnage/Perso1.6.png deleted file mode 100644 index bd7f8e7..0000000 Binary files a/code/ressources/image/personnage/Perso1.6.png and /dev/null differ diff --git a/code/ressources/image/personnage/Perso1.7.png b/code/ressources/image/personnage/Perso1.7.png deleted file mode 100644 index b16ec3d..0000000 Binary files a/code/ressources/image/personnage/Perso1.7.png and /dev/null differ diff --git a/code/ressources/image/personnage/Perso1.8.png b/code/ressources/image/personnage/Perso1.8.png deleted file mode 100644 index 7e1550b..0000000 Binary files a/code/ressources/image/personnage/Perso1.8.png and /dev/null differ diff --git a/code/ressources/image/personnage/Perso1.9.png b/code/ressources/image/personnage/Perso1.9.png deleted file mode 100644 index 04af49a..0000000 Binary files a/code/ressources/image/personnage/Perso1.9.png and /dev/null differ diff --git a/code/src/model/Avatar.java b/code/src/model/Avatar.java deleted file mode 100644 index 06b3c3f..0000000 --- a/code/src/model/Avatar.java +++ /dev/null @@ -1,52 +0,0 @@ -package model; - -public class Avatar { - int idAvatar; - String image; - int coordX; - int coordY; - - public Avatar(int idAvatar, String image, int coordX, int coordY) { - this.idAvatar = idAvatar; - this.image = image; - this.coordX = coordX; - this.coordY = coordY; - } - - public Avatar(int idAvatar, String image) { - this.idAvatar = idAvatar; - this.image = image; - } - - public int getIdAvatar() { - return idAvatar; - } - - public String getImage() { - return image; - } - - public int getCoordX() { - return coordX; - } - - public int getCoordY() { - return coordY; - } - - public void setIdAvatar(int idAvatar) { - this.idAvatar = idAvatar; - } - - public void setImage(String image) { - this.image = image; - } - - public void setCoordX(int coordX) { - this.coordX = coordX; - } - - public void setCoordY(int coordY) { - this.coordY = coordY; - } -} diff --git a/code/src/model/Case.java b/code/src/model/Case.java deleted file mode 100644 index b868a6b..0000000 --- a/code/src/model/Case.java +++ /dev/null @@ -1,57 +0,0 @@ -package model; - -public class Case { - int idCase; - int coordX; - int coordY; - boolean isStart; - boolean isEnd; - - public Case(int idCase, int coordX, int coordY, boolean isStart, boolean isEnd) { - this.idCase = idCase; - this.coordX = coordX; - this.coordY = coordY; - this.isStart = isStart; - this.isEnd = isEnd; - } - - public int getIdCase() { - return idCase; - } - - public int getCoordX() { - return coordX; - } - - public int getCoordY() { - return coordY; - } - - public boolean isStart() { - return isStart; - } - - public boolean isEnd() { - return isEnd; - } - - public void setIdCase(int idCase) { - this.idCase = idCase; - } - - public void setCoordX(int coordX) { - this.coordX = coordX; - } - - public void setCoordY(int coordY) { - this.coordY = coordY; - } - - public void setStart(boolean start) { - isStart = start; - } - - public void setEnd(boolean end) { - isEnd = end; - } -}