namespace StardewModdingAPI.Framework.ModHelpers { /// The common base class for mod helpers. internal abstract class BaseHelper : IModLinked { /********* ** Accessors *********/ /// The unique ID of the mod for which the helper was created. public string ModID { get; } /********* ** Protected methods *********/ /// Construct an instance. /// The unique ID of the relevant mod. protected BaseHelper(string modID) { this.ModID = modID; } } }