-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcommon.h
37 lines (28 loc) · 768 Bytes
/
common.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
#ifndef _COMMON_H
#define _COMMON_H
/*=======STANDARD TEMPLATE LIBRARY=======*/
#include <iostream>
#include <string>
#include <cstdlib>
#include <memory>
#include <ctime>
#include <vector>
#include <map>
#include <cmath>
#include <sstream>
#include <cstdio>
#include <deque>
#include <cstring>
using namespace std;
/*=======GLU/GLEW=======*/
#include "./Dependencies/include/GL/glew.h"
#include "./Dependencies/include/GL/glu.h"
#include "./Dependencies/include/GL/gl.h"
/*=======SDL2=======*/
#define SDL_MAIN_HANDLED
#include "./Dependencies/include/SDL2/SDL.h"
#include "./Dependencies/include/SDL2/SDL_opengl.h"
#include "./Dependencies/include/SDL2/SDL_ttf.h"
#include "./Dependencies/include/SDL2/SDL_image.h"
/*=======CLASS DEFINITIONS=======*/
#endif