blob: 1a95820dbf6090bb3cc20a671d7ae30c66be51e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
public class Tile {
public enum Type {
GRASS, WATER
};
public final int x, y;
public final Type type;
public Tile(Type type, int x, int y) {
this.type = type;
this.x = x;
this.y = y;
}
}
|