summaryrefslogtreecommitdiff
path: root/src/SMAPI/IPrivateField.cs
blob: 512bfdab5cb176088313ff38b7d0dd29c6f816ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
using System;
using System.Reflection;

namespace StardewModdingAPI
{
    /// <summary>A private field obtained through reflection.</summary>
    /// <typeparam name="TValue">The field value type.</typeparam>
    [Obsolete("Use " + nameof(IReflectedField<TValue>) + " instead")]
    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);
    }
}