• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * To change this template, choose Tools | Templates
3  * and open the template in the editor.
4  */
5 package com.jme3.terrain.heightmap;
6 
7 /**
8  *
9  * @author Anthyon
10  */
11 public interface Namer {
12 
13     /**
14      * Gets a name for a heightmap tile given it's cell id
15      * @param x
16      * @param y
17      * @return
18      */
getName(int x, int y)19     public String getName(int x, int y);
20 
21 }
22