Plateau graphique v2 *score,tourJoueur,tailleTour,selection* + maj makefile,readme

This commit was merged in pull request #11.
This commit is contained in:
2025-11-22 11:56:51 -05:00
parent 7bb6b79d53
commit 27bfff9aa1
20 changed files with 784 additions and 270 deletions

View File

@@ -5,8 +5,6 @@ package fr.iut_fbleau.Avalam ;
*
* @version 1.0
* @author Aurélien
* Date : 16-10-25 ; 16-10-25
* Licence :
*/
public class Tower {
//Attributs
@@ -17,10 +15,12 @@ public class Tower {
public Tower(Color color) {
this.color = color ;
}
//Méthodes
public Color getColor() {
return this.color ;
}
public byte getHeight() {
return this.height ;
}
@@ -34,7 +34,7 @@ public class Tower {
this.height += tower.getHeight();
}
//Affichage
@Override
public String toString() {
return "" ;
}