30 lines
748 B
C
30 lines
748 B
C
|
#ifndef DEF_MAIN_H
|
||
|
|
||
|
#define DEF_MAIN_H
|
||
|
|
||
|
/* [LIB] Internes
|
||
|
=========================================================*/
|
||
|
#include <iostream>
|
||
|
#include <ctime>
|
||
|
|
||
|
/* [LIB] Externes
|
||
|
=========================================================*/
|
||
|
#include "sdltl.h" // gestion de la fenetre et SDL
|
||
|
#include "Sprite.h" // gestion des sprites
|
||
|
|
||
|
/* [NS] Namespace
|
||
|
=========================================================*/
|
||
|
using namespace std;
|
||
|
|
||
|
/* [CONST] Constantes et enumerations
|
||
|
=========================================================*/
|
||
|
#define WIN_WIDTH 600
|
||
|
#define WIN_HEIGHT 400
|
||
|
|
||
|
#define FPS 60
|
||
|
|
||
|
/* [FONCTIONS] Fonctions du corps
|
||
|
=========================================================*/
|
||
|
void quitEventHandler(SDL_Event *e);
|
||
|
|
||
|
#endif
|