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