openvr_test1

diff src/app.h @ 0:806d30b46748

OpenVR test initial commit
author John Tsiombikas <nuclear@member.fsf.org>
date Wed, 13 Apr 2016 09:39:37 +0300
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/app.h	Wed Apr 13 09:39:37 2016 +0300
     1.3 @@ -0,0 +1,15 @@
     1.4 +#ifndef APP_H_
     1.5 +#define APP_H_
     1.6 +
     1.7 +bool app_init();
     1.8 +void app_shutdown();
     1.9 +void app_draw();
    1.10 +void app_reshape(int x, int y);
    1.11 +void app_keyboard(int bn, bool pressed);
    1.12 +void app_mouse(int bn, bool pressed, int x, int y);
    1.13 +void app_motion(int x, int y);
    1.14 +
    1.15 +void app_swap_buffers();
    1.16 +void app_quit();
    1.17 +
    1.18 +#endif	// APP_H_
    1.19 \ No newline at end of file