SMAPI/Mods/ConvenientChests/CategorizeChests/Framework/IChestDataManager.cs

13 lines
341 B
C#
Raw Normal View History

2019-04-10 01:22:10 +08:00
using StardewValley.Objects;
namespace ConvenientChests.CategorizeChests.Framework
{
/// <summary>
/// An interface for retrieving the mod-specific data associated with a
/// given Stardew Valley chest object.
/// </summary>
internal interface IChestDataManager
{
ChestData GetChestData(Chest chest);
}
}