17 lines
457 B
C#
17 lines
457 B
C#
using RPGCore.BackpackEquipment.Objects;
|
|
using RPGCore.Core.Objects;
|
|
using RPGCore.ObjectModules.EventObjectModule;
|
|
|
|
namespace RPGCore.BackpackEquipment.ObjectModules.UnitBackpack.Events
|
|
{
|
|
public class BackpackSwapEvent : BaseEvent<UnitObject>
|
|
{
|
|
public UnitObject unit;
|
|
|
|
public int firstSlotIndex;
|
|
public ItemObject firstItem;
|
|
|
|
public int secondSlotIndex;
|
|
public ItemObject secondItem;
|
|
}
|
|
} |