package seng302; import seng302.Model.BoatInRace; import seng302.Model.Leg; import java.util.List; /** * Created by connortaylorbrown on 19/04/17. */ public interface RaceDataSource { List getBoats(); List getLegs(); List getBoundary(); GPSCoordinate getMark(); GPSCoordinate getMapTopLeft(); GPSCoordinate getMapBottomRight(); }