-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCounter.java
35 lines (31 loc) · 1.01 KB
/
Counter.java
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
import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo)
/**
* Write a description of class Counter here.
*
* @author (Teodor Grigor)
* @version (v1.0)
*/
public class Counter extends Actor
{
//declare the variables that keeps the score for both teams (team A and team B)
//we initialise them to 0
int scoreTeamA = 0, scoreTeamB = 0;
//method that its called in order to draw the counter
public void act()
{
//creating the counter
setImage(new GreenfootImage(" Team A vs Team B \n" + scoreTeamA + " : " + scoreTeamB, 24, new Color(21, 21, 21), new Color(0,0,0,0)));
}
//public method that can be accessed outside of this classes
//this method increase the Team A score by 1
public void addScoreToA()
{
scoreTeamA++;
}
//public method that can be accessed outside of this classes
//this method increase the Team B score by 1
public void addScoreToB()
{
scoreTeamB++;
}
}