diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-04-23 20:27:55 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-04-23 20:27:55 -0400 |
commit | 6f43a3dae5795f941819168475fc3bef08ecec70 (patch) | |
tree | e6a4de42b6eed0a73135609814394d62f18bfe9f /src/StardewModdingAPI/Framework/Models | |
parent | ceabb05a84655d32be0ea5b1ebe766a9585557a2 (diff) | |
download | SMAPI-6f43a3dae5795f941819168475fc3bef08ecec70.tar.gz SMAPI-6f43a3dae5795f941819168475fc3bef08ecec70.tar.bz2 SMAPI-6f43a3dae5795f941819168475fc3bef08ecec70.zip |
unify SMAPI versions for SDV 1.11 and 1.2 using compile switches where needed (#264)
Diffstat (limited to 'src/StardewModdingAPI/Framework/Models')
-rw-r--r-- | src/StardewModdingAPI/Framework/Models/ModCompatibility.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/StardewModdingAPI/Framework/Models/ModCompatibility.cs b/src/StardewModdingAPI/Framework/Models/ModCompatibility.cs index 1e71dae0..e1ee8135 100644 --- a/src/StardewModdingAPI/Framework/Models/ModCompatibility.cs +++ b/src/StardewModdingAPI/Framework/Models/ModCompatibility.cs @@ -37,6 +37,9 @@ namespace StardewModdingAPI.Framework.Models /// <summary>Indicates how SMAPI should consider the mod.</summary> public ModCompatibilityType Compatibility { get; set; } + /// <summary>Whether this record only applies to the Stardew Valley 1.2 beta.</summary> + public bool OnlyStardewValleyBeta { get; set; } + /**** ** Injected |