using VOID.Generic.Objects.Abstract.Events; using VOID.Generic.Objects.Item; namespace VOID.Generic.Objects.Unit.Events { public class BackpackSwapEvent : AbstractEvent { public UnitObject unit; public int firstSlotIndex; public ItemObject firstItem; public int secondSlotIndex; public ItemObject secondItem; } }