package map;

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

	enum CELL_TYPE
	{
		EMPTY(1);
		
		private int value;
		
		CELL_TYPE(int v)
		{
			value = v;
		}
		
		public int v()
		{
			return value;
		}
	}
	
	public Cell(int x, int y)
	{
		this.x = x;
		this.y = y;
	}
	
	public void setOwner(int owner) 
	{
		this.owner = owner;
	}
	
	public void render()
	{
		
	}
}
