Advertisement
SrinjoySS01

Game.h

Dec 5th, 2020
273
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.21 KB | None | 0 0
  1. typedef struct Window {
  2.     int width;
  3.     int height;
  4.     const char* title;
  5.     bool fullScreen;
  6.     bool resizable;
  7. } Window;
  8. void run(void);
  9. int init(void);
  10. void loop(void);
  11. void createWindow(Window);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement