ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/proj/CGIRenegadeMapSelector/CGIRenegadeMapSelector.cpp
Revision: 368
Committed: 2008-08-23T02:44:00-07:00 (16 years, 9 months ago) by douglas
File size: 463 byte(s)
Log Message:
Rearranged everything else.

File Contents

# Content
1 // CGI Renegade Map Selector
2 //
3 // Douglas Thrift
4 //
5 // CGIRenegadeMapSelector.cpp
6
7 #include "CGIRenegadeMapSelector.h"
8 #include "RenegadeConfig.h"
9 #include "MapSelector.h"
10
11 bool debug = false;
12 string program;
13 Cgicc cgi;
14 RenegadeConfig* config;
15
16 int main(int argc, char* argv[])
17 {
18 program = argv[0];
19
20 for (int index = 1; index < argc; index++)
21 {
22 string arg = argv[index];
23
24 if (arg == "-D")
25 {
26 debug = true;
27 }
28 }
29
30 MapSelector selector;
31
32 return 0;
33 }