aboutsummaryrefslogtreecommitdiff
path: root/Week4/src/oo15loipe/InfoLoipe.java
blob: 1796418493576aaa4da7039ab66e206ee3ed7a15 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package oo15loipe;

/**
 *
 * @author cstaps
 */
public interface InfoLoipe {
    public int getWidth( ) ; // grootte in oost􀀀west r i cht ing
    public int getHeight( ) ; // grootte in noord􀀀zuid r i cht ing
    public Fragment getFragment( int x, int y) ; // fragment van de loipe op po s i t i e (x , y)
    public Punt start( ) ; // Het startpunt op de kaart
    public Punt stap( ) ; // het volgende punt op de route
}