diff options
Diffstat (limited to 'src/SMAPI/IModProvidedApi.cs')
-rw-r--r-- | src/SMAPI/IModProvidedApi.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/SMAPI/IModProvidedApi.cs b/src/SMAPI/IModProvidedApi.cs new file mode 100644 index 00000000..9884ca78 --- /dev/null +++ b/src/SMAPI/IModProvidedApi.cs @@ -0,0 +1,6 @@ +namespace StardewModdingAPI +{ + /// <summary>An API provided by a mod for other mods to use.</summary> + /// <remarks>This is a marker interface. Each mod can only have one implementation of <see cref="IModProvidedApi"/>.</remarks> + public interface IModProvidedApi { } +} |