30 lines
553 B
Java
30 lines
553 B
Java
package Domain;
|
|
|
|
public class Fours extends Category{
|
|
|
|
public Fours() {
|
|
super("Fours", "Score of all the fours rolled.");
|
|
}
|
|
|
|
@Override
|
|
public boolean correctCategory(int[] values){
|
|
for(int i : values){
|
|
if(i == 4){
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public int getScore(int[] values){
|
|
int score = 0;
|
|
for(int i : values){
|
|
if( i == 4 ){
|
|
score += 4;
|
|
}
|
|
}
|
|
return score;
|
|
}
|
|
}
|