summaryrefslogtreecommitdiff
path: root/src/SMAPI/IModLinked.cs
blob: 172ee30c256ffd40fe1231829829d5ddb004de08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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; }
    }
}