package domain.sheets;
public class Sixes extends Category {
@Override
public int calcValueFromAmount() {
this.value = this.amount * 6;
return this.value;
}