dungeon_crawler

annotate 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
rev   line source
nuclear@1 1 #ifndef TILE_H_
nuclear@1 2 #define TILE_H_
nuclear@1 3
nuclear@1 4 class Tile {
nuclear@1 5 public:
nuclear@1 6 bool load(const char *fname);
nuclear@1 7
nuclear@1 8 void draw() const;
nuclear@1 9 };
nuclear@1 10
nuclear@1 11 #endif // TILE_H_