package fr.lyrgard.hexScape.model.map; public class Decor { private String name; private Direction direction; private int x, y, z; public String getName() { return name; } public void setName(String name) { this.name = name; } public Direction getDirection() { return direction; } public void setDirection(Direction direction) { this.direction = direction; } public void setPosition(int x, int y, int z) { this.x = x; this.y = y; this.z = z; } public int getX() { return x; } public void setX(int x) { this.x = x; } public int getY() { return y; } public void setY(int y) { this.y = y; } public int getZ() { return z; } public void setZ(int z) { this.z = z; } }