This commit is contained in:
loic 2016-09-22 22:18:20 +02:00
parent 919746e58e
commit 2c819557ff
2 changed files with 5 additions and 1 deletions

View file

@ -103,7 +103,7 @@ public class MainWindowController implements IObserver {
this.score.setFont(new Font(40));
if(this.adapter.isLoosed()){
this.score.setText("Score : " + this.model.getScore() + " ----- YOU LOOSE !!");
this.score.setText("Score : " + this.model.getScore() + "\n You loose !!!");
}
else{
this.score.setText("Score : " + this.model.getScore());

View file

@ -11,7 +11,11 @@
xmlns:fx="http://javafx.com/fxml" prefWidth="800" prefHeight="800" >
<top>
<GridPane alignment="CENTER">
<padding><Insets top="50" right="25" bottom="25" left="25"/></padding>
<Text fx:id="score"/>
</GridPane>
</top>
<center>
<Canvas fx:id="boardCanvas" height="500" width="500" />