26 lines
859 B
C#

using System;
using System.IO;
using System.Collections.Generic;
using Syroot.Worms.Gen2.Armageddon.ProjectX;
namespace Syroot.Worms.Test
{
/// <summary>
/// Represents the main class of the application containing the program entry point.
/// </summary>
internal class Program
{
// ---- METHODS (PRIVATE) --------------------------------------------------------------------------------------
private static void Main(string[] args)
{
Library library = new Library(@"D:\Archive\Games\Worms\Worms Armageddon\3.6.31.0\Libs\cnades.pxl");
library.Save(@"D:\Pictures\saved.pxl");
//Scheme pxScheme = new Scheme(@"D:\Archive\Games\Worms\Worms Armageddon\3.6.31.0\PXSchemes\PacStruction.pxs");
Console.WriteLine("Done.");
Console.ReadLine();
}
}
}