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