diff options
Diffstat (limited to 'StardewModdingAPI/Manifest.cs')
-rw-r--r-- | StardewModdingAPI/Manifest.cs | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/StardewModdingAPI/Manifest.cs b/StardewModdingAPI/Manifest.cs new file mode 100644 index 00000000..4fc1ed3c --- /dev/null +++ b/StardewModdingAPI/Manifest.cs @@ -0,0 +1,33 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace StardewModdingAPI +{ + public class Manifest + { + /// <summary> + /// The name of your mod. + /// </summary> + public virtual string Name { get; set; } + + /// <summary> + /// The name of the mod's authour. + /// </summary> + public virtual string Authour { get; set; } + + /// <summary> + /// The version of the mod. + /// </summary> + public virtual string Version { get; set; } + + /// <summary> + /// A description of the mod. + /// </summary> + public virtual string Description { get; set; } + + public string EntryDll { get; set; } + } +} |