blob: 8c9386f59d05c7b70c836ce2a6398fc8861a8465 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
package oo15loipe;
/**
* Interface for a class that can show a loipe on the screen
*
* @author Thijs Heijligenberg s4451414, Camil Staps, s4498062
*/
public interface TekenLoipe {
/**
* Draw the loipe
*/
public void teken() ; // teken de gegeven loipe
/**
* Set the current position of the skier
* @param p
*/
public void setPosition(Punt p) ; // teken de spor ter op de gegeven po s i t i e
}
|