rayfract

diff src/gui.h @ 2:87b6a11c920b

added gui stuff
author John Tsiombikas <nuclear@siggraph.org>
date Tue, 26 Oct 2010 08:49:09 +0300
parents
children e4349f5804b9
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/gui.h	Tue Oct 26 08:49:09 2010 +0300
     1.3 @@ -0,0 +1,10 @@
     1.4 +#ifndef GUI_H_
     1.5 +#define GUI_H_
     1.6 +
     1.7 +#include <ubertk.h>
     1.8 +
     1.9 +int gui_init(int xsz, int ysz);
    1.10 +void gui_draw();
    1.11 +void gui_set_visible(bool vis);
    1.12 +
    1.13 +#endif