using System; namespace KKAPI.Maker { /// /// Event args for accessory transfer events. /// public class AccessoryTransferEventArgs : EventArgs { /// public AccessoryTransferEventArgs(int sourceSlotIndex, int destinationSlotIndex) { SourceSlotIndex = sourceSlotIndex; DestinationSlotIndex = destinationSlotIndex; } /// /// Index of the source accessory. /// public int SourceSlotIndex { get; } /// /// Index the source accessory is copied to. /// public int DestinationSlotIndex { get; } } }