using System;
namespace KKAPI.Maker
{
///
/// Event args used in .
///
public sealed class AccessoryWindowControlValueChangedEventArgs : EventArgs
{
///
public AccessoryWindowControlValueChangedEventArgs(TVal newValue, int slotIndex)
{
NewValue = newValue;
SlotIndex = slotIndex;
}
///
/// Newly assigned value.
///
public TVal NewValue { get; }
///
/// Index of the accessory the value was assigned to.
///
public int SlotIndex { get; }
}
}