blob: 1136316ffb8ca6175fe1ffc96bd0b92f82ac85aa (
plain)
1
2
3
4
5
6
7
|
using System.Collections.Generic;
namespace StardewModdingAPI
{
/// <summary>Encapsulates access and changes to dictionary content being read from a data file.</summary>
public interface IAssetDataForDictionary<TKey, TValue> : IAssetData<IDictionary<TKey, TValue>> { }
}
|