ExtractScenarioFileOnly() public method

public ExtractScenarioFileOnly ( string ScenarioFilePath ) : void
ScenarioFilePath string
return void
Ejemplo n.º 1
0
        public static int Extract( List<string> args )
        {
            string MglkPath = args[0];

            MGLK Mglk = new MGLK();
            Mglk.Load( System.IO.File.ReadAllBytes( MglkPath ) );

            Mglk.ExtractScenarioFileOnly( MglkPath + ".sce" );

            return 0;
        }
Ejemplo n.º 2
0
        public static int Extract(List <string> args)
        {
            string MglkPath = args[0];

            MGLK Mglk = new MGLK();

            Mglk.Load(System.IO.File.ReadAllBytes(MglkPath));

            Mglk.ExtractScenarioFileOnly(MglkPath + ".sce");

            return(0);
        }