16 lines
386 B
C#
16 lines
386 B
C#
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;
|
|
}
|
|
} |