1/*
2 * To change this template, choose Tools | Templates
3 * and open the template in the editor.
4 */
5package com.jme3.terrain.heightmap;
6
7/**
8 *
9 * @author Anthyon
10 */
11public 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     */
19    public String getName(int x, int y);
20
21}
22