aboutsummaryrefslogtreecommitdiff
path: root/src/gameCommon.h
blob: b53b955d843ca8afc1bcff2256b9b641e43c719b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <math.h>
#include <time.h>
#include <ctype.h>
#include <stdbool.h>

#include <raylib.h>
#include <raymath.h>
#include "raylib.h"

#ifndef GAME_COMMON_H
#define GAME_COMMON_H

#define WINDOW_WIDTH 960
#define WINDOW_HEIGHT 540

#endif