mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-08-09 02:09:35 +00:00
1
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
using System;
|
||||
using System.Text.RegularExpressions;
|
||||
using System.Collections;
|
||||
using System.IO;
|
||||
|
||||
namespace MapSorter
|
||||
{
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Summary description for Class1.
|
||||
/// </summary>
|
||||
class Class1
|
||||
{
|
||||
/// <summary>
|
||||
/// The main entry point for the application.
|
||||
/// </summary>
|
||||
[STAThread]
|
||||
static void Main(string[] args)
|
||||
{
|
||||
if( args.Length != 1 )
|
||||
{
|
||||
Console.WriteLine("Usage: MapSorter <filename.map>");
|
||||
return;
|
||||
}
|
||||
|
||||
new MapFileLoader(args[0]).DumpReport();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user