11 lines
189 B
Java
11 lines
189 B
Java
|
package domain.sheets;
|
||
|
|
||
|
public class Fours extends Category {
|
||
|
|
||
|
@Override
|
||
|
public int calcValueFromAmount() {
|
||
|
this.value = this.amount * 4;
|
||
|
return this.value;
|
||
|
}
|
||
|
}
|