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