diff --git a/include/window.h b/include/window.h index b72fe5f..bc4837b 100644 --- a/include/window.h +++ b/include/window.h @@ -3,12 +3,12 @@ #include "vec2i.h" -typedef struct GLFWwindow GLFWwindow; +struct GLFWwindow; struct window { struct vec2i size; - GLFWwindow *_window; + struct GLFWwindow *_window; }; struct window *sw_window_create(struct vec2i size, char *title);