diff options
author | Zoryn <zoryn4163@gmail.com> | 2016-03-03 15:06:25 -0500 |
---|---|---|
committer | Zoryn <zoryn4163@gmail.com> | 2016-03-03 15:06:25 -0500 |
commit | 9a1b910ea32f518b605c88315f192afc6fc40f28 (patch) | |
tree | fcc475ef046295a06a2358c7f83cb4e97e38ce9c /StardewInjector/Program.cs | |
parent | de3f161a49bf7486290f0e4b3531177f949bc3cd (diff) | |
download | SMAPI-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.cs | 30 |
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 |