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