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