From 51d293e29e04761d2d341d892e05ad5a94698bec Mon Sep 17 00:00:00 2001 From: Zoryn Aaron Date: Mon, 21 Mar 2016 14:33:10 -0400 Subject: adds 'obsolete' tag to deprecated things. these things will need to be removed in the future. compatability should not be effected. --- StardewModdingAPI/Mod.cs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'StardewModdingAPI/Mod.cs') diff --git a/StardewModdingAPI/Mod.cs b/StardewModdingAPI/Mod.cs index b323b6ec..fc86409b 100644 --- a/StardewModdingAPI/Mod.cs +++ b/StardewModdingAPI/Mod.cs @@ -12,24 +12,28 @@ namespace StardewModdingAPI /// The name of your mod. /// NOTE: THIS IS DEPRECATED AND WILL BE REMOVED IN THE NEXT VERSION OF SMAPI /// + [Obsolete] public virtual string Name { get; set; } /// /// The name of the mod's authour. /// NOTE: THIS IS DEPRECATED AND WILL BE REMOVED IN THE NEXT VERSION OF SMAPI /// + [Obsolete] public virtual string Authour { get; set; } /// /// The version of the mod. /// NOTE: THIS IS DEPRECATED AND WILL BE REMOVED IN THE NEXT VERSION OF SMAPI /// + [Obsolete] public virtual string Version { get; set; } /// /// A description of the mod. /// NOTE: THIS IS DEPRECATED AND WILL BE REMOVED IN THE NEXT VERSION OF SMAPI /// + [Obsolete] public virtual string Description { get; set; } -- cgit