1 |
douglas |
63 |
// Renegade Map Selector |
2 |
|
|
// |
3 |
|
|
// Douglas Thrift |
4 |
|
|
// |
5 |
|
|
// RenegadeMapSelector.h |
6 |
|
|
|
7 |
|
|
#ifndef _RenegadeMapSelector_h_ |
8 |
|
|
#define _RenegadeMapSelector_h_ |
9 |
|
|
|
10 |
douglas |
68 |
#ifdef _DEBUG |
11 |
|
|
#pragma warning(disable:4786) |
12 |
|
|
#endif // _DEBUG |
13 |
|
|
|
14 |
douglas |
63 |
#include <iostream> |
15 |
|
|
#include <string> |
16 |
|
|
#include <fstream> |
17 |
douglas |
68 |
#include <strstream> |
18 |
douglas |
63 |
#include <vector> |
19 |
|
|
#include <cstdlib> |
20 |
|
|
#include <cstdio> |
21 |
|
|
|
22 |
|
|
#ifdef _WIN32 |
23 |
|
|
|
24 |
|
|
#include <windows.h> |
25 |
|
|
|
26 |
|
|
#endif |
27 |
|
|
|
28 |
|
|
using namespace std; |
29 |
|
|
|
30 |
|
|
extern bool debug; |
31 |
|
|
extern string program; |
32 |
|
|
|
33 |
|
|
#endif // _RenegadeMapSelector_h_ |