diff options
Diffstat (limited to 'src/gameCommon.h')
-rw-r--r-- | src/gameCommon.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/gameCommon.h b/src/gameCommon.h new file mode 100644 index 0000000..c825873 --- /dev/null +++ b/src/gameCommon.h @@ -0,0 +1,16 @@ +#include <stdio.h> +#include <stdlib.h> +#include <math.h> + +#include <raylib.h> +#include <raymath.h> + +#define WINDOW_WIDTH 640 +#define WINDOW_HEIGHT 480 + +#ifndef GAME_COMMON_H +#define GAME_COMMON_H + +typedef struct Game game; + +#endif |