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

13 lines
370 B
C#
Raw Normal View History

2019-04-10 01:22:10 +08:00
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);
}
}