diff options
Diffstat (limited to 'test/gui/window.c')
-rw-r--r-- | test/gui/window.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/gui/window.c b/test/gui/window.c new file mode 100644 index 0000000..b19300e --- /dev/null +++ b/test/gui/window.c | |||
@@ -0,0 +1,15 @@ | |||
1 | #include "gui/window.h" | ||
2 | #include "MLV/MLV_all.h" | ||
3 | |||
4 | static 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);*/ | ||
10 | } | ||
11 | |||
12 | int main() { | ||
13 | test_window(); | ||
14 | return 0; | ||
15 | } \ No newline at end of file | ||