using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace StardewModdingAPI { public class Mod { /// /// The name of your mod. /// public virtual string Name { get; protected set; } /// /// The name of the mod's authour. /// public virtual string Authour { get; protected set; } /// /// The version of the mod. /// public virtual string Version { get; protected set; } /// /// A description of the mod. /// public virtual string Description { get; protected set; } /// /// A basic method that is the entry-point of your mod. It will always be called once when the mod loads. /// public virtual void Entry(params object[] objects) { } } }