aboutsummaryrefslogtreecommitdiffstats
path: root/src/window.hpp
blob: 82abd2a1817d85a9c06725883e82d604e4110f3a (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  800
#define SCREENHEIGHT 450

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

#endif // WINDOW_H_