diff options
Diffstat (limited to 'src/StardewModdingAPI/IPrivateField.cs')
-rw-r--r-- | src/StardewModdingAPI/IPrivateField.cs | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/src/StardewModdingAPI/IPrivateField.cs b/src/StardewModdingAPI/IPrivateField.cs deleted file mode 100644 index 3e681c12..00000000 --- a/src/StardewModdingAPI/IPrivateField.cs +++ /dev/null @@ -1,26 +0,0 @@ -using System.Reflection; - -namespace StardewModdingAPI -{ - /// <summary>A private field obtained through reflection.</summary> - /// <typeparam name="TValue">The field value type.</typeparam> - public interface IPrivateField<TValue> - { - /********* - ** Accessors - *********/ - /// <summary>The reflection metadata.</summary> - FieldInfo FieldInfo { get; } - - - /********* - ** Public methods - *********/ - /// <summary>Get the field value.</summary> - TValue GetValue(); - - /// <summary>Set the field value.</summary> - //// <param name="value">The value to set.</param> - void SetValue(TValue value); - } -}
\ No newline at end of file |