package edu.calpoly.csc480.Entomo.Tile;

import com.bcurry.www.awt.*;

public class WallTile extends Tile {
	public static char getCharType()	{return 'X';}

	public WallTile() {
	}

	public char toChar()					{return getCharType();}
	public String getName()				{return "Wall";}

	public boolean isWall()				{return true;}

	protected TileView makeView()		{return new WallTileView();}
}