-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.h
46 lines (31 loc) · 1.01 KB
/
main.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/////////////////////////////////////////////////////////////
///
/// main.h
/// Boing
///
/// Created by Gaëtan de Villèle on 15/01/11.
/// Copyright 2011 EPSI. All rights reserved.
///
/////////////////////////////////////////////////////////////
#ifndef MAIN // Si la constante n'a pas été définie` le fichier n'a jamais été inclus
#define MAIN // On définit la constante pour que la prochaine fois le fichier ne soit plus inclus
//------------------------------------------
// Bibliothèques principales
//------------------------------------------
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
//------------------------------------------
/// Bibliothèques additionnelles
//------------------------------------------
#include "SDL.h"
#include "OpenGL/gl.h"
#include "OpenGL/glu.h"
//------------------------------------------
// Moteur Physique
//------------------------------------------
#include "vector.h"
#include "solid.h"
#include "physicEngine.h"
#endif // MAIN