fixed forward decleration

This commit is contained in:
DaniTheSkunk 2022-12-21 06:26:51 +00:00
parent 9eb09be03b
commit ed0a834ee2
1 changed files with 2 additions and 2 deletions

View File

@ -3,12 +3,12 @@
#include "vec2i.h" #include "vec2i.h"
typedef struct GLFWwindow GLFWwindow; struct GLFWwindow;
struct window { struct window {
struct vec2i size; struct vec2i size;
GLFWwindow *_window; struct GLFWwindow *_window;
}; };
struct window *sw_window_create(struct vec2i size, char *title); struct window *sw_window_create(struct vec2i size, char *title);