summaryrefslogtreecommitdiff
path: root/StardewModdingAPI/Mod.cs
diff options
context:
space:
mode:
authorZoryn <Zoryn4163@users.noreply.github.com>2016-03-21 14:34:09 -0400
committerZoryn <Zoryn4163@users.noreply.github.com>2016-03-21 14:34:09 -0400
commit452b1dd1846149561293d2584c5419438cc2be9d (patch)
treeb432e27488ffd9e41aefe97f510e48417239dc60 /StardewModdingAPI/Mod.cs
parentf09fbc87831268a518a7a648a51bfd1170d2ff6d (diff)
parent51d293e29e04761d2d341d892e05ad5a94698bec (diff)
downloadSMAPI-452b1dd1846149561293d2584c5419438cc2be9d.tar.gz
SMAPI-452b1dd1846149561293d2584c5419438cc2be9d.tar.bz2
SMAPI-452b1dd1846149561293d2584c5419438cc2be9d.zip
Merge pull request #41 from Zoryn4163/master
adds 'obsolete' tag to deprecated things. these things will need to be removed in the future. compatability should not be effected.
Diffstat (limited to 'StardewModdingAPI/Mod.cs')
-rw-r--r--StardewModdingAPI/Mod.cs4
1 files changed, 4 insertions, 0 deletions
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
/// </summary>
+ [Obsolete]
public virtual string Name { get; set; }
/// <summary>
/// The name of the mod's authour.
/// NOTE: THIS IS DEPRECATED AND WILL BE REMOVED IN THE NEXT VERSION OF SMAPI
/// </summary>
+ [Obsolete]
public virtual string Authour { get; set; }
/// <summary>
/// The version of the mod.
/// NOTE: THIS IS DEPRECATED AND WILL BE REMOVED IN THE NEXT VERSION OF SMAPI
/// </summary>
+ [Obsolete]
public virtual string Version { get; set; }
/// <summary>
/// A description of the mod.
/// NOTE: THIS IS DEPRECATED AND WILL BE REMOVED IN THE NEXT VERSION OF SMAPI
/// </summary>
+ [Obsolete]
public virtual string Description { get; set; }