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; } } }