Revision: | 368 |
Committed: | 2008-08-23T02:44:00-07:00 (16 years, 9 months ago) by douglas |
Content type: | text/x-c |
File size: | 478 byte(s) |
Log Message: | Rearranged everything else. |
# | User | Rev | Content |
---|---|---|---|
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 | 85 | #include <sstream> |
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_ |