Update all the repo

update all the repo by creating correct packages and deletting all .class files
This commit is contained in:
Jose Srifi 2019-03-30 22:29:23 +01:00
parent bbc2cd6b3b
commit 9fdf776a07
26 changed files with 5 additions and 2 deletions

0
.classpath Normal file → Executable file
View File

0
.gitignore vendored Normal file → Executable file
View File

0
.gitkeep Executable file
View File

0
.project Normal file → Executable file
View File

0
.setting/.gitkeep Normal file → Executable file
View File

0
.setting/org.eclipse.jdt.core.prefs Normal file → Executable file
View File

0
LICENSE Normal file → Executable file
View File

0
README.md Normal file → Executable file
View File

0
src/game/.gitkeep Normal file → Executable file
View File

0
src/gamemanager/.gitkeep Normal file → Executable file
View File

0
src/ia/.gitkeep Normal file → Executable file
View File

0
src/joueurs/.gitkeep Normal file → Executable file
View File

5
src/joueurs/Joueur.java Normal file → Executable file
View File

@ -5,6 +5,10 @@ public class Joueur {
private String couleur;
//private boolean tour = false;
public Joueur() {
this.nom = null;
this.couleur = null;
public Joueur(String n, String c) {
nom = n;
couleur = c;
@ -27,5 +31,4 @@ public class Joueur {
}
}

0
src/move/.gitkeep Normal file → Executable file
View File

0
src/piecesEchiquier/.gitkeep Normal file → Executable file
View File

0
src/piecesEchiquier/Cavalier.java Normal file → Executable file
View File

0
src/piecesEchiquier/Echiquier.java Normal file → Executable file
View File

0
src/piecesEchiquier/Fou.java Normal file → Executable file
View File

0
src/piecesEchiquier/Piece.java Normal file → Executable file
View File

0
src/piecesEchiquier/Pion.java Normal file → Executable file
View File

0
src/piecesEchiquier/Reine.java Normal file → Executable file
View File

0
src/piecesEchiquier/Roi.java Normal file → Executable file
View File

0
src/piecesEchiquier/Tour.java Normal file → Executable file
View File

0
src/player/.gitkeep Normal file → Executable file
View File

0
src/visuel/.gitkeep Normal file → Executable file
View File

0
src/visuel/main.java Normal file → Executable file
View File