diff options
| -rw-r--r-- | common/tile.h | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/common/tile.h b/common/tile.h index 7094306..8bd01b5 100644 --- a/common/tile.h +++ b/common/tile.h @@ -2,6 +2,7 @@  #define TILE_H  #include <stdint.h> +#include <vector>  class Tile {  	public: @@ -58,4 +59,6 @@ class Tile {  		Tile(uint16_t w);  }; +typedef std::vector<Tile> Tiles; +  #endif  | 
