package map;

public class Cell 
{
	int owner = -1;
	int x, y;

	enum CELL_TYPE
	{
		EMPTY = 0
	}
	
	public Cell(int x, int y)
	{
		this.x = x;
		this.y = y;
	}
	
	public void setOwner(int owner) 
	{
		this.owner = owner;
	}
	
	public void render()
	{
		
	}
}
