diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-12-10 18:05:18 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-12-10 18:05:18 -0500 |
commit | 8776d1afa6dce054f3bc7cb421c86f3e2fe06ab3 (patch) | |
tree | 506b4f8487aaba8f5ea5e3e94795308b82a0a7ca /src/SMAPI/IPrivateProperty.cs | |
parent | 80c4d93559989777fbe5a23b923155b93df7a715 (diff) | |
download | SMAPI-8776d1afa6dce054f3bc7cb421c86f3e2fe06ab3.tar.gz SMAPI-8776d1afa6dce054f3bc7cb421c86f3e2fe06ab3.tar.bz2 SMAPI-8776d1afa6dce054f3bc7cb421c86f3e2fe06ab3.zip |
adjust reflection API to correctly reflect what it does (#410)
Diffstat (limited to 'src/SMAPI/IPrivateProperty.cs')
-rw-r--r-- | src/SMAPI/IPrivateProperty.cs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/SMAPI/IPrivateProperty.cs b/src/SMAPI/IPrivateProperty.cs index 8d67fa7a..a24495dd 100644 --- a/src/SMAPI/IPrivateProperty.cs +++ b/src/SMAPI/IPrivateProperty.cs @@ -1,9 +1,11 @@ -using System.Reflection; +using System; +using System.Reflection; namespace StardewModdingAPI { /// <summary>A private property obtained through reflection.</summary> /// <typeparam name="TValue">The property value type.</typeparam> + [Obsolete("Use " + nameof(IPrivateProperty<TValue>) + " instead")] public interface IPrivateProperty<TValue> { /********* @@ -23,4 +25,4 @@ namespace StardewModdingAPI //// <param name="value">The value to set.</param> void SetValue(TValue value); } -}
\ No newline at end of file +} |