summaryrefslogtreecommitdiff
path: root/StardewInjector/Program.cs
diff options
context:
space:
mode:
authorZoryn <zoryn4163@gmail.com>2016-03-03 15:06:25 -0500
committerZoryn <zoryn4163@gmail.com>2016-03-03 15:06:25 -0500
commit9a1b910ea32f518b605c88315f192afc6fc40f28 (patch)
treefcc475ef046295a06a2358c7f83cb4e97e38ce9c /StardewInjector/Program.cs
parentde3f161a49bf7486290f0e4b3531177f949bc3cd (diff)
downloadSMAPI-9a1b910ea32f518b605c88315f192afc6fc40f28.tar.gz
SMAPI-9a1b910ea32f518b605c88315f192afc6fc40f28.tar.bz2
SMAPI-9a1b910ea32f518b605c88315f192afc6fc40f28.zip
resync for merge conflicts
Diffstat (limited to 'StardewInjector/Program.cs')
-rw-r--r--StardewInjector/Program.cs30
1 files changed, 30 insertions, 0 deletions
diff --git a/StardewInjector/Program.cs b/StardewInjector/Program.cs
new file mode 100644
index 00000000..41c72240
--- /dev/null
+++ b/StardewInjector/Program.cs
@@ -0,0 +1,30 @@
+/*
+using Mono.Cecil;
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using System.Reflection;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Stardew_Injector
+{
+ class Program
+ {
+
+ private static Stardew_Hooker hooker = new Stardew_Hooker();
+
+ static void Main(string[] args)
+ {
+ hooker.Initialize();
+ hooker.ApplyHooks();
+ hooker.Finalize();
+
+ hooker.Run();
+ Console.ReadLine();
+ }
+
+ }
+}
+*/ \ No newline at end of file