summaryrefslogtreecommitdiff
path: root/src/RobotRace.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/RobotRace.java')
-rw-r--r--src/RobotRace.java27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/RobotRace.java b/src/RobotRace.java
index 8a197b7..6495285 100644
--- a/src/RobotRace.java
+++ b/src/RobotRace.java
@@ -388,33 +388,6 @@ public class RobotRace extends Base {
}
/**
- * Implementation of the terrain.
- */
- private class Terrain {
-
- /**
- * Can be used to set up a display list.
- */
- public Terrain() {
- // code goes here ...
- }
-
- /**
- * Draws the terrain.
- */
- public void draw() {
- // code goes here ...
- }
-
- /**
- * Computes the elevation of the terrain at ({@code x}, {@code y}).
- */
- public float heightAt(float x, float y) {
- return 0; // <- code goes here
- }
- }
-
- /**
* Main program execution body, delegates to an instance of
* the RobotRace implementation.
*/