summaryrefslogtreecommitdiff
path: root/src/StardewModdingAPI/IPrivateProperty.cs
blob: 8d67fa7a13cd4d18c2d30a2593f034240391c8b0 (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
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);
    }
}