summaryrefslogtreecommitdiffstats
path: root/src/de/gamezock/metacraft/data/TileData.java
blob: 5b345539c3e37ea8425d9c516202543f675abbb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package de.gamezock.metacraft.data;

import java.nio.IntBuffer;
import java.util.List;

public interface TileData {
  public int getSize();
  
  public float[][] getHeightmap();
  public List<IndexedTriangle> getTriangles();
  public IntBuffer getIndexBuffer();
  
  public TileType getType();
}