dungeon_crawler

diff prototype/src/level.h @ 5:252a00508411

more stuff
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 12 Aug 2012 07:07:57 +0300
parents 96de911d05d4
children fa8f89d06f6f
line diff
     1.1 --- a/prototype/src/level.h	Sat Aug 11 05:44:52 2012 +0300
     1.2 +++ b/prototype/src/level.h	Sun Aug 12 07:07:57 2012 +0300
     1.3 @@ -36,9 +36,11 @@
     1.4  	std::vector<const Tile*> tiles;
     1.5  
     1.6  public:
     1.7 +	GridCell(const Tile *tile = 0);
     1.8 +
     1.9  	void add_tile(const Tile *tile);
    1.10  
    1.11 -	void draw() const;
    1.12 +	void draw(unsigned int draw_mask) const;
    1.13  };
    1.14  
    1.15  #endif	// LEVEL_H_