namespace StardewModdingAPI.Framework.StateTracking { /// A watcher which tracks changes to a value. internal interface IValueWatcher : IWatcher { /********* ** Accessors *********/ /// The field value at the last reset. T PreviousValue { get; } /// The latest value. T CurrentValue { get; } } }