rayfract

view src/gui.h @ 10:1496aae2e7d4

- simplified build by including dependences in the source tree - added make dep tracking - added mingw cross-build rules - added readme & licence
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 31 Jul 2023 18:58:56 +0300
parents 87b6a11c920b
children
line source
1 #ifndef GUI_H_
2 #define GUI_H_
4 #include <imtk.h>
6 int gui_init(int xsz, int ysz);
7 void gui_draw();
8 void gui_set_visible(bool vis);
10 #endif