Added some icons and implemented them

This commit is contained in:
Yorick
2015-03-12 23:42:06 +00:00
30 changed files with 57 additions and 22 deletions
+13
View File
@@ -0,0 +1,13 @@
package Objects;
import java.awt.geom.Point2D;
import Applicatie.DrawObject;
public class Path extends DrawObject {
public Path(Point2D position) {
super("images/path.jpg", position);
}
}