initial commit - cross reference with 5th port - obviously has compile errors

This commit is contained in:
LetterJay
2016-07-03 02:17:19 -05:00
commit 35a1723e98
4355 changed files with 2221257 additions and 0 deletions
@@ -0,0 +1,31 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
namespace MapAtmosFixer
{
class Program
{
static void Main(string[] args)
{
if (args.Length < 1)
{
Console.WriteLine("Please drag-drop file onto the .exe");
Console.Read();
return;
}
string file = args[0];
if (Path.GetExtension(file) != ".dmm")
{
Console.WriteLine("File not a map.");
Console.Read();
return;
}
Mapatmosfixer.Init(file);
}
}
}