init
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
using VOID.Generic.Dict;
|
||||
using VOID.Generic.Objects.Abstract.Events;
|
||||
using VOID.Generic.Objects.Unit;
|
||||
|
||||
namespace VOID.Generic.Objects.Wearable.Events
|
||||
{
|
||||
public class EquipEvent : AbstractEvent
|
||||
{
|
||||
public bool prevented = false;
|
||||
|
||||
public WearableObject wearable;
|
||||
public UnitObject unit;
|
||||
public int slotIndex;
|
||||
public EquipmentSlotType slotType;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ca18a2eb79784873a2d3ec91e0039c0e
|
||||
timeCreated: 1672745226
|
||||
@@ -0,0 +1,13 @@
|
||||
using VOID.Generic.Objects.Abstract.Events;
|
||||
using VOID.Generic.Objects.Unit;
|
||||
|
||||
namespace VOID.Generic.Objects.Wearable.Events
|
||||
{
|
||||
public class UnEquipEvent : AbstractEvent
|
||||
{
|
||||
public bool prevented = false;
|
||||
|
||||
public WearableObject wearable;
|
||||
public UnitObject unit;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b8140167085e42d8a0de7e07e04e1902
|
||||
timeCreated: 1672745241
|
||||
Reference in New Issue
Block a user