aboutsummaryrefslogtreecommitdiff
path: root/engine/src/terrain/com/jme3/terrain/heightmap/HeightMapGrid.java
diff options
context:
space:
mode:
Diffstat (limited to 'engine/src/terrain/com/jme3/terrain/heightmap/HeightMapGrid.java')
-rw-r--r--engine/src/terrain/com/jme3/terrain/heightmap/HeightMapGrid.java23
1 files changed, 23 insertions, 0 deletions
diff --git a/engine/src/terrain/com/jme3/terrain/heightmap/HeightMapGrid.java b/engine/src/terrain/com/jme3/terrain/heightmap/HeightMapGrid.java
new file mode 100644
index 0000000..8d59429
--- /dev/null
+++ b/engine/src/terrain/com/jme3/terrain/heightmap/HeightMapGrid.java
@@ -0,0 +1,23 @@
+/*
+ * To change this template, choose Tools | Templates
+ * and open the template in the editor.
+ */
+package com.jme3.terrain.heightmap;
+
+import com.jme3.math.Vector3f;
+
+/**
+ *
+ * @author Anthyon
+ */
+@Deprecated
+/**
+ * @Deprecated in favor of TerrainGridTileLoader
+ */
+public interface HeightMapGrid {
+
+ public HeightMap getHeightMapAt(Vector3f location);
+
+ public void setSize(int size);
+
+}