summaryrefslogtreecommitdiff
path: root/src/SMAPI/IPrivateProperty.cs
blob: a1b21a691a5f12f5d597521f04c417bdb94f64b4 (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
29
30
#if !STARDEW_VALLEY_1_3
using System;
using System.Reflection;

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