#if !STARDEW_VALLEY_1_3
using System;
using System.Reflection;
namespace StardewModdingAPI
{
/// A private field obtained through reflection.
/// The field value type.
[Obsolete("Use " + nameof(IReflectedField) + " instead")]
public interface IPrivateField
{
/*********
** Accessors
*********/
/// The reflection metadata.
FieldInfo FieldInfo { get; }
/*********
** Public methods
*********/
/// Get the field value.
TValue GetValue();
/// Set the field value.
//// The value to set.
void SetValue(TValue value);
}
}
#endif