fixed forward decleration
This commit is contained in:
parent
9eb09be03b
commit
ed0a834ee2
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue