ajout des personnages

julien
ZIRTR0X 4 years ago
parent 13c2aa15b6
commit ce39892873

@ -3,10 +3,20 @@
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/ressources" type="java-resource" />
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="lib" level="project" />
<orderEntry type="module-library">
<library>
<CLASSES>
<root url="jar://$MODULE_DIR$/../../../../Téléchargements/jfoenix-9.0.10.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
</library>
</orderEntry>
</component>
</module>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 260 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

@ -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;
}
}

@ -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;
}
}
Loading…
Cancel
Save