summaryrefslogtreecommitdiff
path: root/src/SMAPI/IModLinked.cs
blob: cf08c9c5a881af774289be08e05dff5b6f7f86cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#nullable disable

namespace StardewModdingAPI
{
    /// <summary>An instance linked to a mod.</summary>
    public interface IModLinked
    {
        /*********
        ** Accessors
        *********/
        /// <summary>The unique ID of the mod for which the instance was created.</summary>
        string ModID { get; }
    }
}