summaryrefslogtreecommitdiff
path: root/test/gui/window.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/gui/window.c')
-rw-r--r--test/gui/window.c13
1 files changed, 11 insertions, 2 deletions
diff --git a/test/gui/window.c b/test/gui/window.c
index 2e7e0cb..e3b062a 100644
--- a/test/gui/window.c
+++ b/test/gui/window.c
@@ -1,6 +1,15 @@
1static void test_window(){ 1#include "gui/window.h"
2#include "MLV/MLV_all.h"
2 3
4static void test_window() {
5 Window window;
6 window_init(&window, 1000, 512, "Coucou");
7 window_create(&window);
8 MLV_wait_seconds(150);
9 window_free(&window);
3} 10}
4int main(){ 11
12int main() {
13 test_window();
5 return 0; 14 return 0;
6} \ No newline at end of file 15} \ No newline at end of file