From 5f595d8a464174bf8ec6940476cf6e05014e17b4 Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Sun, 23 Apr 2017 20:34:47 -0400 Subject: let mods specify a minimum game version in their manifest.json (#264) --- src/StardewModdingAPI/Framework/Manifest.cs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/StardewModdingAPI/Framework') diff --git a/src/StardewModdingAPI/Framework/Manifest.cs b/src/StardewModdingAPI/Framework/Manifest.cs index 189da9a8..f9c90ff6 100644 --- a/src/StardewModdingAPI/Framework/Manifest.cs +++ b/src/StardewModdingAPI/Framework/Manifest.cs @@ -26,6 +26,9 @@ namespace StardewModdingAPI.Framework /// The minimum SMAPI version required by this mod, if any. public string MinimumApiVersion { get; set; } + /// The minimum game version required by this mod, if any. + public string MinimumGameVersion { get; set; } + /// The name of the DLL in the directory that has the method. public string EntryDll { get; set; } -- cgit