-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcommon.h
50 lines (50 loc) · 1.32 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
#ifndef COMMON_H_INCLUDED
#define COMMON_H_INCLUDED
#include<SDL.h>
#include<SDL2/SDL_image.h>
#include<SDL2/SDL_mixer.h>
//#include<SDL2/SDL_ttf.h>
#include<graphics.h>
#include<cstdlib>
#include<cstdio>
#include<vector>
#include<string>
#include"attacker.h"
#include"defender.h"
#include"map.h"
//#include"notify.h"
#include"winner.h"
#include"ai.h"
#include"LTexture.h"
extern int map_selection;
extern int attacker_control, defender_control;
extern bool bomb_mode, poison_mode;
extern map m;
//extern notify note;
extern bool legal_move;//don't alter
extern bool ended;//don't alter
extern SDL_Window* gWindow;
extern SDL_Renderer* gRenderer;
extern attacker _attacker;
extern defender _defender;
extern LTexture gmenuTexture[5];
extern LTexture aoptionTexture[3];
extern LTexture doptionTexture[3];
extern LTexture boptionTexture[2];
extern LTexture poptionTexture[2];
extern LTexture gnoticeTexture[7];
extern LTexture gspaceTexture;
extern LTexture gattackerTexture;
extern LTexture gdefenderTexture;
extern LTexture gobs1Texture;
extern LTexture gobs2Texture;
extern LTexture gobs3Texture;
extern LTexture gbombTexture;
extern LTexture gpoisonTexture;
extern LTexture gattrangeTexture;
extern LTexture check;
extern LTexture uncheck;
extern LTexture rules;
extern LTexture bombtexture;
extern LTexture poisontexture;
#endif // COMMON_H_INCLUDED