summaryrefslogtreecommitdiff
path: root/StardewInjector/Program.cs
diff options
context:
space:
mode:
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