Revision: | 63 |
Committed: | 2003-03-10T23:38:36-08:00 (22 years, 3 months ago) by douglas |
Content type: | text/x-c |
File size: | 397 byte(s) |
Log Message: | Initial revision |
# | 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 | #include <iostream> | ||
11 | #include <string> | ||
12 | #include <fstream> | ||
13 | #include <vector> | ||
14 | #include <cstdlib> | ||
15 | #include <cstdio> | ||
16 | |||
17 | #ifdef _WIN32 | ||
18 | |||
19 | #include <windows.h> | ||
20 | |||
21 | #endif | ||
22 | |||
23 | using namespace std; | ||
24 | |||
25 | extern bool debug; | ||
26 | extern string program; | ||
27 | |||
28 | #endif // _RenegadeMapSelector_h_ |