diff options
author | Camil Staps | 2015-04-18 13:44:44 +0200 |
---|---|---|
committer | Camil Staps | 2015-04-18 13:44:44 +0200 |
commit | 6a44b074f0169a1b0f9e92347af929c5e471746e (patch) | |
tree | ae5663fe7c69881bf4ecfedbef99c2505f8ec964 /Week4 Drawing loipes/src/oo15loipe/TekenLoipe.java | |
parent | Added copyright to docs (diff) |
Reorganised projects
Diffstat (limited to 'Week4 Drawing loipes/src/oo15loipe/TekenLoipe.java')
-rw-r--r-- | Week4 Drawing loipes/src/oo15loipe/TekenLoipe.java | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Week4 Drawing loipes/src/oo15loipe/TekenLoipe.java b/Week4 Drawing loipes/src/oo15loipe/TekenLoipe.java new file mode 100644 index 0000000..8c9386f --- /dev/null +++ b/Week4 Drawing loipes/src/oo15loipe/TekenLoipe.java @@ -0,0 +1,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 +} |