Example #1
0
wrpStats::wrpStats(int argc, char *argv[])
{
    Open_Files(argc, argv);
    Read_Signature();

    // 8WVR, ArmA style
    if (strcmp (sig, "8WVR") == 0) Read_8WVR();

    // 4WVR, OFP style
    if (strcmp (sig, "4WVR") == 0) Read_4WVR();
}
seaLevel::seaLevel(int argc, char *argv[])
{
    Open_Files(argc, argv);
    Read_Signature();
    Read_Elevations();
    Read_Textures();
    Write_Elevations();
    Write_Textures();
    Read_Objects();
    Close_Files();
}