(no commit message)
[asgard.git] / tile.h
blob8ebcfb9c16430510c9f67f514afbe58ab639167a
1 #ifndef _TILE_H
2 #define _TILE_H
4 enum TileType {WATER,DESERT,GRASS};
6 class Tile
8 private:
9 TileType tileType;
10 public:
11 virtual bool isWalkable() const = 0;
14 #endif