This commit is contained in:
2026-07-09 21:33:33 +02:00
commit 84a2a365f3
2364 changed files with 950134 additions and 0 deletions
@@ -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