commentaar variabelen

This commit is contained in:
Leen Dereu
2018-03-08 19:14:31 +01:00
parent 1a5d4d66f2
commit 4da6bf97f3

View File

@@ -22,10 +22,14 @@ public class Worm {
// region properties
//===================================================================================
// Location
/**
* this variable contains the location of the worm (a tuple)
*/
private Tuple<Double, Double> location;
// jumping
/**
* this variable contains the old location of the worm (a tuple)
*/
private Tuple<Double, Double> oldLocation;
/**