New terrain

This commit is contained in:
xrgman
2015-04-07 14:56:59 +02:00
parent b2b2388f6f
commit 65f428c572
16 changed files with 724 additions and 56 deletions
-21
View File
@@ -1,21 +0,0 @@
package Objects;
import java.awt.geom.Point2D;
import Applicatie.DrawObject;
public class OldPath extends DrawObject
{
public OldPath(Point2D position)
{
super("images/path.jpg", position);
}
@Override
public String getName()
{
return "Path";
}
}