aboutsummaryrefslogtreecommitdiffstats
path: root/src/menu/application.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/menu/application.hpp')
-rw-r--r--src/menu/application.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/menu/application.hpp b/src/menu/application.hpp
index 99036d51..24d0b44f 100644
--- a/src/menu/application.hpp
+++ b/src/menu/application.hpp
@@ -30,6 +30,7 @@
#include <SDL/SDL.h>
#include <SDL/SDL_framerate.h>
#include <log4cxx/logger.h>
+#include <list>
#include "drawable_control.hpp"
#include "frame.hpp"
@@ -53,6 +54,8 @@ namespace usdx
int frames_per_second;
+ std::list<DrawableControl*> overlays;
+
/**
* This is the main loop.
*/
@@ -80,6 +83,8 @@ namespace usdx
const int get_frames_per_second(void) const;
void set_frames_per_second(int fps);
+
+ void repaint(SDL_Surface* display) const;
};
};