dos port underway
[retroray] / src / app.h
index c74bd02..52b5d96 100644 (file)
--- a/src/app.h
+++ b/src/app.h
@@ -18,6 +18,10 @@ along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #ifndef APP_H_
 #define APP_H_
 
+#include "sizeint.h"
+#include "logger.h"
+#include "scene.h"
+
 enum {
        KEY_ESC = 27,
        KEY_DEL = 127,
@@ -67,6 +71,11 @@ extern struct app_screen scr_model, scr_rend;
 struct font;
 extern struct font *uifont;
 
+extern uint32_t *framebuf;
+
+extern struct scene *scn;
+
+
 int app_init(void);
 void app_shutdown(void);