summaryrefslogtreecommitdiff
path: root/StardewModdingAPI/Manifest.cs
diff options
context:
space:
mode:
authorZoryn Aaron <zoryn4163@gmail.com>2016-03-21 21:07:37 -0400
committerZoryn Aaron <zoryn4163@gmail.com>2016-03-21 21:07:37 -0400
commitc73c1a0ec779228015a2f70f8a14a353f32664e2 (patch)
tree198e2e864a2371530735c2c4506d077a709422c4 /StardewModdingAPI/Manifest.cs
parent78609647e9e5ed6310942eaf104f495353e328e3 (diff)
parent46d21e384e3075b5352e20733f31e61d929d561a (diff)
downloadSMAPI-c73c1a0ec779228015a2f70f8a14a353f32664e2.tar.gz
SMAPI-c73c1a0ec779228015a2f70f8a14a353f32664e2.tar.bz2
SMAPI-c73c1a0ec779228015a2f70f8a14a353f32664e2.zip
Merge branch 'master'
Diffstat (limited to 'StardewModdingAPI/Manifest.cs')
-rw-r--r--StardewModdingAPI/Manifest.cs33
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; }
+ }
+}