-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScorePane.java
More file actions
40 lines (32 loc) · 912 Bytes
/
ScorePane.java
File metadata and controls
40 lines (32 loc) · 912 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/**
* Nii Oye Kpakpo
* Section 3
* 11/26/2024
*
* display player scores
*/
import edu.ncat.brickbreakerbackend.PlayerProfile;
import javafx.scene.control.Label;
import javafx.scene.layout.HBox;
public class ScorePane extends HBox {
private int score;
private Label lblScore;
private PlayerProfile playerProfile;
public ScorePane(PlayerProfile playerProfile){
this.playerProfile = new PlayerProfile();
this.setScore(getScore());
lblScore = new Label("Score: " + score );
lblScore.setStyle("-fx-font-size: 15px;");
this.getChildren().add(lblScore);
}
public void incrementScore(int pts){
this.score += pts;
lblScore.setText("Score: " + score);
}
public int getScore() {
return score;
}
public void setScore(int score) {
this.score = score;
}
}