fixed stuff

This commit is contained in:
xrgman
2015-04-07 17:07:32 +02:00
parent 5ec737e707
commit 98af73b15e
42 changed files with 4384 additions and 152 deletions
+19
View File
@@ -0,0 +1,19 @@
package Objects;
import java.awt.geom.Point2D;
public class OldPath extends DrawObject
{
public OldPath(Point2D position)
{
super("path", position);
}
@Override
public String getName()
{
return "Path";
}
}