/**
 * This class is an alias for an Immutable Position
 */
final class ImmutablePosition extends Position {

    /**
     * Constructor
     * @param x The x position associated with this object.
     * @param y The y position associated with this object.
     */
    public ImmutablePosition(int x, int y) { super(x, y); }

} 
    
