vrshoot

view src/scr_debug.h @ 0:b2f14e535253

initial commit
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 01 Feb 2014 19:58:19 +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_