dungeon_crawler

diff prototype/src/level.h @ 40:38e16366efc2

foo
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 30 Aug 2012 03:05:04 +0300
parents 862461b686f4
children dfd3a413ef9e
line diff
     1.1 --- a/prototype/src/level.h	Thu Aug 30 01:15:23 2012 +0300
     1.2 +++ b/prototype/src/level.h	Thu Aug 30 03:05:04 2012 +0300
     1.3 @@ -35,6 +35,7 @@
     1.4  
     1.5  	void draw() const;
     1.6  	void draw_lights() const;
     1.7 +	void draw_post() const;
     1.8  };
     1.9  
    1.10  class GridCell {
    1.11 @@ -51,6 +52,7 @@
    1.12  
    1.13  	void draw(unsigned int draw_mask) const;
    1.14  	void draw_lights(unsigned int draw_mask) const;
    1.15 +	void draw_post(unsigned int draw_mask) const;
    1.16  };
    1.17  
    1.18  #endif	// LEVEL_H_