blob: 691ed37797e674d5c2bcdbe17bf381466da861aa (
plain)
1
2
3
4
5
6
7
|
using System.Collections.Generic;
namespace StardewModdingAPI.Framework.StateTracking
{
/// <summary>A watcher which tracks changes to a dictionary.</summary>
internal interface IDictionaryWatcher<TKey, TValue> : ICollectionWatcher<KeyValuePair<TKey, TValue>> { }
}
|