class Forward extends Player { private int goals = 0; public Forward(String name, int age, int goals) { super.setType(Type.FORWARD); super.setName(name); super.setAge(age); this.goals = goals; } public int getGoals() { return this.goals; } }