mirror of
https://github.com/kwsch/NHSE.git
synced 2026-05-13 22:09:57 -05:00
19 lines
527 B
C#
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; }
|
|
}
|
|
}
|