This commit is contained in:
Matt Nadareski
2016-04-18 16:32:17 -07:00
parent 38f62683d9
commit cd958b7950
5 changed files with 43 additions and 0 deletions

View File

@@ -1,4 +1,5 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
using System.Xml;
@@ -17,6 +18,13 @@ namespace DatSplit
{
Console.Title = "DatSplit " + Build.Version;
// Credits take precidence over all
if ((new List<string>(args)).Contains("--credits"))
{
Build.Credits();
return;
}
// If we don't have arguments, show help
if (args.Length == 0 && args.Length != 3)
{