# HG changeset patch # User John Tsiombikas # Date 1346285104 -10800 # Node ID 38e16366efc2fabc88254dbb3e33911b9f4553a4 # Parent 060a440405778506fa30b12dfbd4e3105dcd0085 foo diff -r 060a44040577 -r 38e16366efc2 prototype/src/level.h --- a/prototype/src/level.h Thu Aug 30 01:15:23 2012 +0300 +++ b/prototype/src/level.h Thu Aug 30 03:05:04 2012 +0300 @@ -35,6 +35,7 @@ void draw() const; void draw_lights() const; + void draw_post() const; }; class GridCell { @@ -51,6 +52,7 @@ void draw(unsigned int draw_mask) const; void draw_lights(unsigned int draw_mask) const; + void draw_post(unsigned int draw_mask) const; }; #endif // LEVEL_H_