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.Xml;
@@ -16,6 +17,13 @@ namespace SabreTools
{
Console.Title = "SingleGame " + Build.Version;
// Credits take precidence over all
if ((new List<string>(args)).Contains("--credits"))
{
Build.Credits();
return;
}
if (args.Length == 0)
{
Build.Help();