1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package design.model.statistics; public class LifetimeStats extends StatisticsDecorator{ public LifetimeStats(Statistics wrapped_statistics){ super(wrapped_statistics); } @Override public int get_score(){ return super.get_score(); } @Override public double get_distance(){ return super.get_distance(); } }