using OtterGui.Classes;
namespace Glamourer.Events;
///
/// Triggered when a new item or customization is unlocked.
///
/// - Parameter is the type of the unlocked object
/// - Parameter is the id of the unlocked object.
/// - Parameter is the timestamp of the unlock.
///
///
public sealed class ObjectUnlocked()
: EventWrapper(nameof(ObjectUnlocked))
{
public enum Type
{
Item,
Customization,
}
public enum Priority
{
///
/// Currently used as a hack to make the unlock table dirty in it. If anything else starts using this, rework.
UnlockTable = 0,
}
}