added stuff

This commit is contained in:
unknown
2015-03-17 12:23:43 +01:00
parent 87bf6d9295
commit 2f53d1353f
35 changed files with 1465 additions and 195 deletions
+8 -2
View File
@@ -7,7 +7,13 @@ import Applicatie.DrawObject;
public class Toilet extends DrawObject {
public Toilet(Point2D position) {
super("images/toilet.png", position);
super("images/wc.png", position);
}
}
@Override
public String getName() {
return "Toilet";
}
}