summaryrefslogtreecommitdiff
path: root/StardewModdingAPI/Mod.cs
diff options
context:
space:
mode:
Diffstat (limited to 'StardewModdingAPI/Mod.cs')
-rw-r--r--StardewModdingAPI/Mod.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/StardewModdingAPI/Mod.cs b/StardewModdingAPI/Mod.cs
index eabdc539..a196c3a2 100644
--- a/StardewModdingAPI/Mod.cs
+++ b/StardewModdingAPI/Mod.cs
@@ -29,6 +29,11 @@ namespace StardewModdingAPI
public virtual string Description { get; protected set; }
/// <summary>
+ /// Where the mod is located on the disk.
+ /// </summary>
+ public string PathOnDisk { get; internal 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(params object[] objects)