Пример #1
0
    public static void Main(string[] args)
    {
        string entry_name = args[1];
        int    entry      = Int32.Parse(args[2]);

        Mpq         mpq    = new MpqArchive(args[0]);
        DumpIScript dumper = new DumpIScript(mpq);

        dumper.Dump(entry_name, entry);
    }
Пример #2
0
	public static void Main (string[] args)
	{
		string entry_name = args[1];
		int entry = Int32.Parse (args[2]);

		Mpq mpq = new MpqArchive (args[0]);
		DumpIScript dumper = new DumpIScript (mpq);
		dumper.Dump (entry_name, entry);
	}