dungeon_crawler

view prototype/src/tile.h @ 1:96de911d05d4

started a rough prototype
author John Tsiombikas <nuclear@mutantstargoat.com>
date Thu, 28 Jun 2012 06:05:50 +0300
parents
children 1f61f2a02832
line source
1 #ifndef TILE_H_
2 #define TILE_H_
4 class Tile {
5 public:
6 bool load(const char *fname);
8 void draw() const;
9 };
11 #endif // TILE_H_