Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- typedef struct Window {
- int width;
- int height;
- const char* title;
- bool fullScreen;
- bool resizable;
- } Window;
- void run(void);
- int init(void);
- void loop(void);
- void createWindow(Window);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement