aboutsummaryrefslogtreecommitdiffstats
path: root/src/window.hpp
blob: 74fd3ecd7c20b657fc35765df22bd52e2df1ff05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef WINDOW_H_
#define WINDOW_H_

#include "raylib.h"

int initWindow(void);

#define SCREENWIDTH  1600
#define SCREENHEIGHT 900

typedef enum gameState {
TITLE = 0, GAMEPLAY, ENDING
} gameState ;

#endif // WINDOW_H_