NHSE/NHSE.Core/Editing/ItemRequest/IConfigItem.cs
Kurt d7b46726a0 Absorb extension logic from SysBot.AnimalCrossing project
Extract out pis=>nhi, and nhi=>pis (player item set)
2021-01-17 09:29:46 -08:00

19 lines
527 B
C#

namespace NHSE.Core
{
/// <summary>
/// Interface describing how items should be configured prior to being dropped by the player.
/// </summary>
public interface IConfigItem
{
/// <summary>
/// Checks if the item should have wrapping paper applied.
/// </summary>
bool WrapAllItems { get; }
/// <summary>
/// Wrapping paper type applied if <see cref="WrapAllItems"/> is set.
/// </summary>
ItemWrappingPaper WrappingPaper { get; }
}
}