From 0cd0b776bbd0b5a5a22b254552085bf8338cc80b Mon Sep 17 00:00:00 2001 From: Carson McManus Date: Sun, 21 Aug 2016 11:34:48 -0400 Subject: [PATCH] Added basic help message --- Program.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Program.cs b/Program.cs index d465090..e652f1e 100644 --- a/Program.cs +++ b/Program.cs @@ -8,5 +8,10 @@ using System.Linq; [STAThread] public static void Main(string[] args) { - + if (args.Contains("--help") || args.Contains("-h")) + { + Console.WriteLine("steamguard-cli - v0.0"); + Console.WriteLine(); + Console.WriteLine("--help, -h Display this help message."); + } }