From e6e0ed3ef098eb4b13f77128d8de27cb9bbd38ca Mon Sep 17 00:00:00 2001 From: Carson McManus Date: Sun, 21 Aug 2016 11:29:27 -0400 Subject: [PATCH] Initial commit --- .gitignore | 1 + Program.cs | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 .gitignore create mode 100644 Program.cs diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..64d9cd5 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SteamAuth/ diff --git a/Program.cs b/Program.cs new file mode 100644 index 0000000..d465090 --- /dev/null +++ b/Program.cs @@ -0,0 +1,12 @@ +using System; +using System.Text; +using System.Linq; + +/// +/// The main entry point for the application +/// +[STAThread] +public static void Main(string[] args) +{ + +}