summaryrefslogtreecommitdiff
path: root/src/SMAPI/IPrivateField.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/SMAPI/IPrivateField.cs')
-rw-r--r--src/SMAPI/IPrivateField.cs26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/SMAPI/IPrivateField.cs b/src/SMAPI/IPrivateField.cs
new file mode 100644
index 00000000..3e681c12
--- /dev/null
+++ b/src/SMAPI/IPrivateField.cs
@@ -0,0 +1,26 @@
+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