summaryrefslogtreecommitdiff
path: root/src/StardewModdingAPI/IPrivateProperty.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/StardewModdingAPI/IPrivateProperty.cs')
-rw-r--r--src/StardewModdingAPI/IPrivateProperty.cs26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/StardewModdingAPI/IPrivateProperty.cs b/src/StardewModdingAPI/IPrivateProperty.cs
deleted file mode 100644
index 8d67fa7a..00000000
--- a/src/StardewModdingAPI/IPrivateProperty.cs
+++ /dev/null
@@ -1,26 +0,0 @@
-using System.Reflection;
-
-namespace StardewModdingAPI
-{
- /// <summary>A private property obtained through reflection.</summary>
- /// <typeparam name="TValue">The property value type.</typeparam>
- 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);
- }
-} \ No newline at end of file