dungeon_crawler

diff 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 diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/prototype/src/tile.h	Thu Jun 28 06:05:50 2012 +0300
     1.3 @@ -0,0 +1,11 @@
     1.4 +#ifndef TILE_H_
     1.5 +#define TILE_H_
     1.6 +
     1.7 +class Tile {
     1.8 +public:
     1.9 +	bool load(const char *fname);
    1.10 +
    1.11 +	void draw() const;
    1.12 +};
    1.13 +
    1.14 +#endif	// TILE_H_