summaryrefslogtreecommitdiff
path: root/src/main/java/design/model/ICourse.java
blob: fd171d3b1dc73f0a4d0f135c24dcf3a010864548 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package design.model;

import java.util.List;

/*
 * Defines the interface for courses to implement 
 * Willem Dalton
 */
public interface ICourse {
    String getName();
    float getDifficultyRating();
    String getLocation();
    List<Hole> getHoles();
    int getHoleCount();
    int getTotalPar();
}