[go: up one dir, main page]

Menu

[r9]: / BMMain.h  Maximize  Restore  History

Download this file

24 lines (18 with data), 711 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef _BMMAIN_H_
#define _BMMAIN_H_
#include <string>
const string WINTITLE = "SDL Learning System 0.1";
const string CHARSPRITENAME = "./resources/images/charmovementlist.png";
const string TORCHFILE = "./resources/images/torch.png";
const string BOMBIMAGEFILE = "./resources/images/bomb.png";
const string EXPLOSIONFILE = "./resources/images/explosion.png";
const string BACKTILEIMAGE = "/resources/images/backgroundtile.png";
const string BACKTILELIST = "/resources/images/backgroundlist.map";
const int ITEMBOMB = 1;
const int ITEMBOMBUP = 2;
const int ITEMPOWERUP = 3;
const int ITEMSPEEDUP = 4;
const int MAINBOMB = 1;
const int NETWORKBOMB = 2;
const int AIBOMB = 3;
#endif