summaryrefslogtreecommitdiff
path: root/src/SMAPI/IModProvidedApi.cs
blob: 9884ca78d7e60655e519f06255ef432c86a939e7 (plain)
1
2
3
4
5
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 { }
}