| 13 |
|
static string SLASHSLASH = "//"; |
| 14 |
|
static string DIRSLASH = "\\"; |
| 15 |
|
string strInstallCfg = "../GameDataFolder/Add.cfg"; |
| 16 |
< |
|
| 17 |
< |
|
| 16 |
> |
static string strInstallerVersion = "1.0"; |
| 17 |
|
|
| 18 |
|
#define STRUCT_DEFS |
| 19 |
|
struct ModPackage |
| 47 |
|
cout << " Readme: " << readme << "\n"; |
| 48 |
|
cout << "\n"; |
| 49 |
|
} |
| 50 |
< |
|
| 51 |
< |
bool operator < (const ModPackage &fs) |
| 50 |
> |
|
| 51 |
> |
bool operator < (const ModPackage &fs) const |
| 52 |
|
{ return (name < fs.name);} |
| 53 |
|
|
| 54 |
< |
bool operator > (const ModPackage &fs) |
| 54 |
> |
bool operator > (const ModPackage &fs) const |
| 55 |
|
{ return (name > fs.name);} |
| 56 |
|
|
| 57 |
< |
bool operator == (const ModPackage &fs) |
| 57 |
> |
bool operator == (const ModPackage &fs) const |
| 58 |
|
{ return (name == fs.name);} |
| 59 |
|
}; |
| 60 |
|
|