namespace Content.Shared.Inventory.Events; public sealed class RefreshEquipmentHudEvent : EntityEventArgs, IInventoryRelayEvent where T : IComponent { public SlotFlags TargetSlots { get; init; } public bool Active = false; public List Components = new(); public RefreshEquipmentHudEvent(SlotFlags targetSlots) { TargetSlots = targetSlots; } }