Kniffel/domain/sheets/Three_of_kind.java

10 lines
196 B
Java
Raw Normal View History

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