Fixed actionlisteners

This commit is contained in:
2015-03-17 13:27:21 +01:00
parent 8bf08d4e1d
commit c21af8db1a
14 changed files with 529 additions and 371 deletions
+7 -4
View File
@@ -1,17 +1,20 @@
package Objects;
import java.awt.geom.Point2D;
import Applicatie.DrawObject;
public class Path extends DrawObject
{
public class Path extends DrawObject {
public Path(Point2D position) {
public Path(Point2D position)
{
super("images/path.jpg", position);
}
@Override
public String getName() {
public String getName()
{
return "Path";
}