14 lines
374 B
C#
14 lines
374 B
C#
namespace Content.Shared.Inventory.Events;
|
|
|
|
public sealed class RefreshEquipmentHudEvent<T> : EntityEventArgs, IInventoryRelayEvent where T : IComponent
|
|
{
|
|
public SlotFlags TargetSlots { get; init; }
|
|
public bool Active = false;
|
|
public object? ExtraData;
|
|
|
|
public RefreshEquipmentHudEvent(SlotFlags targetSlots)
|
|
{
|
|
TargetSlots = targetSlots;
|
|
}
|
|
}
|