using System;
using System.Text.RegularExpressions;
using System.Collections;
using System.IO;
namespace MapSorter
{
///
/// Summary description for Class1.
///
class Class1
{
///
/// The main entry point for the application.
///
[STAThread]
static void Main(string[] args)
{
if( args.Length != 1 )
{
Console.WriteLine("Usage: MapSorter ");
return;
}
new MapFileLoader(args[0]).DumpReport();
}
}
}