From 929dccb75a1405737975d76648e015a3e7c00177 Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Sat, 7 Oct 2017 23:07:10 -0400 Subject: reorganise repo structure --- src/StardewModdingAPI/IMod.cs | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 src/StardewModdingAPI/IMod.cs (limited to 'src/StardewModdingAPI/IMod.cs') diff --git a/src/StardewModdingAPI/IMod.cs b/src/StardewModdingAPI/IMod.cs deleted file mode 100644 index 35ac7c0f..00000000 --- a/src/StardewModdingAPI/IMod.cs +++ /dev/null @@ -1,26 +0,0 @@ -namespace StardewModdingAPI -{ - /// The implementation for a Stardew Valley mod. - public interface IMod - { - /********* - ** Accessors - *********/ - /// Provides simplified APIs for writing mods. - IModHelper Helper { get; } - - /// Writes messages to the console and log file. - IMonitor Monitor { get; } - - /// The mod's manifest. - IManifest ModManifest { get; } - - - /********* - ** Public methods - *********/ - /// The mod entry point, called after the mod is first loaded. - /// Provides simplified APIs for writing mods. - void Entry(IModHelper helper); - } -} \ No newline at end of file -- cgit