vrshoot

view src/scr_debug.h @ 2:334d17aed7de

visual studio project files
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 02 Feb 2014 18:36:38 +0200
parents
children
line source
1 #ifndef SCR_DEBUG_H_
2 #define SCR_DEBUG_H_
4 #include "scr_overlay.h"
6 class DebugScreen : public OverlayScreen {
7 public:
8 const char *get_name() const;
10 bool init();
11 void cleanup();
13 void display() const;
14 };
16 #endif // SCR_DEBUG_H_