diff options
Diffstat (limited to 'StardewModdingAPI/Mod.cs')
-rw-r--r-- | StardewModdingAPI/Mod.cs | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/StardewModdingAPI/Mod.cs b/StardewModdingAPI/Mod.cs new file mode 100644 index 00000000..32021b4a --- /dev/null +++ b/StardewModdingAPI/Mod.cs @@ -0,0 +1,39 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace StardewModdingAPI +{ + public class Mod + { + /// <summary> + /// The name of your mod. + /// </summary> + public virtual string Name { get; protected set; } + + /// <summary> + /// The name of the mod's authour. + /// </summary> + public virtual string Authour { get; protected set; } + + /// <summary> + /// The version of the mod. + /// </summary> + public virtual string Version { get; protected set; } + + /// <summary> + /// A description of the mod. + /// </summary> + public virtual string Description { get; protected set; } + + /// <summary> + /// A basic method that is the entry-point of your mod. It will always be called once when the mod loads. + /// </summary> + public virtual void Entry() + { + + } + } +} |