/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package com.oic.map; /** * * @author b2020 */ public class Position { private int x; private int y; private int width; private int height; public Position(int x, int y, int width, int height) { this.x = x; this.y = y; this.width = width; this.height = height; } public int getHeight() { return height; } public int getWidth() { return width; } public void setHeight(int height) { this.height = height; } public void setWidth(int width) { this.width = width; } public int getX() { return x; } public int getY() { return y; } public void setX(int x) { this.x = x; } public void setY(int y) { this.y = y; } }