curvedraw

view src/app.h @ 0:8e524989c904

getting there
author John Tsiombikas <nuclear@member.fsf.org>
date Tue, 15 Dec 2015 07:15:53 +0200
parents
children 7dcd0f6113e5
line source
1 #ifndef APP_H_
2 #define APP_H_
4 bool app_init(int argc, char **argv);
5 void app_cleanup();
7 void app_draw();
8 void app_reshape(int x, int y);
9 void app_keyboard(int key, bool pressed);
10 void app_mouse_button(int bn, bool pressed, int x, int y);
11 void app_mouse_motion(int x, int y);
13 void post_redisplay(); // in main.cc
15 #endif // APP_H_