blob: 81fb7460f121fa45b9b81c9281794e754d47671c (
plain)
1
2
3
4
5
6
7
8
9
|
#nullable disable
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>> { }
}
|