Updated to new Johan version

This commit is contained in:
2015-03-10 12:02:12 +01:00
parent c7ef130187
commit 9f2fee9f20
16 changed files with 228 additions and 239 deletions
+13
View File
@@ -0,0 +1,13 @@
package Objects;
import java.awt.geom.Point2D;
import Applicatie.DrawObject;
public class Toilet extends DrawObject {
public Toilet(Point2D position) {
super("images/toilet.png", position);
}
}