summaryrefslogtreecommitdiff
path: root/StardewModdingAPI/Mod.cs
blob: 32021b4a795272bc46ba4b3eb0b88e14c12fd1a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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()
        {

        }
    }
}