11 lines
309 B
C#
11 lines
309 B
C#
namespace Content.Shared.Inventory.Events;
|
|
|
|
[ByRefEvent]
|
|
public record struct RefreshEquipmentHudEvent<T>(SlotFlags TargetSlots) : IInventoryRelayEvent
|
|
where T : IComponent
|
|
{
|
|
public SlotFlags TargetSlots { get; } = TargetSlots;
|
|
public bool Active = false;
|
|
public List<T> Components = new();
|
|
}
|