diff options
Diffstat (limited to 'src/SMAPI/IPrivateProperty.cs')
-rw-r--r-- | src/SMAPI/IPrivateProperty.cs | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/src/SMAPI/IPrivateProperty.cs b/src/SMAPI/IPrivateProperty.cs deleted file mode 100644 index a1b21a69..00000000 --- a/src/SMAPI/IPrivateProperty.cs +++ /dev/null @@ -1,30 +0,0 @@ -#if !STARDEW_VALLEY_1_3 -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> - { - /********* - ** Accessors - *********/ - /// <summary>The reflection metadata.</summary> - PropertyInfo PropertyInfo { get; } - - - /********* - ** Public methods - *********/ - /// <summary>Get the property value.</summary> - TValue GetValue(); - - /// <summary>Set the property value.</summary> - //// <param name="value">The value to set.</param> - void SetValue(TValue value); - } -} -#endif |