diff options
author | Camil Staps | 2015-02-26 16:59:03 +0100 |
---|---|---|
committer | Camil Staps | 2015-02-26 16:59:03 +0100 |
commit | d3f1a43a9463c4c8be06c8074869b3b7fabc213d (patch) | |
tree | 25b2ac3fc79cf1ecc9d683cf555168f4a7d5e11d /Week4/src/oo15loipe/InfoLoipe.java | |
parent | x (diff) |
Added base framework week4
Diffstat (limited to 'Week4/src/oo15loipe/InfoLoipe.java')
-rw-r--r-- | Week4/src/oo15loipe/InfoLoipe.java | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Week4/src/oo15loipe/InfoLoipe.java b/Week4/src/oo15loipe/InfoLoipe.java index 931a267..764e2f3 100644 --- a/Week4/src/oo15loipe/InfoLoipe.java +++ b/Week4/src/oo15loipe/InfoLoipe.java @@ -10,8 +10,10 @@ package oo15loipe; * @author cstaps */ public interface InfoLoipe { - public int getX() ; // grootte in oost−west ri c h ti n g - public int getY() ; // grootte in noord−zuid ri c h ti n g - public Fragment getFragment(int x, int y) ; // fragment van de l oi p e op p o si ti e (x , y) + public int getWidth(); // grootte in oost−west ri c h ti n g + public int getHeight(); // grootte in noord−zuid ri c h ti n g + public Fragment getFragment(int x, int y); // fragment van de l oi p e op p o si ti e (x , y) + public Punt start(); // Het startpunt op de kaart + public Punt stap(); // het volgende punt op de route } |