package inf112.fiasko.roborally.objects; import inf112.fiasko.roborally.element_properties.Position; /** * This class represents a board element and its position * @param The type of element */ public class BoardElementContainer { private final K element; private final Position position; /** * Initializes the BoardElementContainer * @param element The element * @param position The position */ BoardElementContainer(K element, Position position) { this.element = element; this.position = position; } /** * Gets the element * @return The element */ public K getElement() { return element; } /** * Gets the position * @return The position */ public Position getPosition() { return position; } }