You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
392 B
20 lines
392 B
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<BoatInRace> getBoats();
|
|
List<Leg> getLegs();
|
|
List<GPSCoordinate> getBoundary();
|
|
|
|
GPSCoordinate getMark();
|
|
GPSCoordinate getMapTopLeft();
|
|
GPSCoordinate getMapBottomRight();
|
|
}
|