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

13 lines
370 B
C#

using ConvenientChests.CategorizeChests.Framework.Persistence;
using StardewValley.Objects;
namespace ConvenientChests.CategorizeChests.Framework
{
/// <summary>
/// A helper for finding the chest object corresponding to a given chest address.
/// </summary>
interface IChestFinder
{
Chest GetChestByAddress(ChestAddress address);
}
}