diff options
author | Adam NAILI | 2017-12-31 17:52:59 +0100 |
---|---|---|
committer | Adam NAILI | 2017-12-31 17:52:59 +0100 |
commit | 3e6c3cea17042e83d8e48b87abd89c617a2f70f3 (patch) | |
tree | 0d6b22c672e670daa3cb464668500535af0ee988 /test/gui/window.c | |
parent | e275a679a1fb9377dd1a74329420ce6e95a03da3 (diff) | |
parent | f1d17a0bb9d1ba98cc94488ecbdb539f123b33ab (diff) | |
download | morpher-3e6c3cea17042e83d8e48b87abd89c617a2f70f3.tar.gz |
Merge remote-tracking branch 'origin/gui'
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 | ||