namespace Content.Shared.Inventory.Events; [ByRefEvent] public record struct RefreshEquipmentHudEvent(SlotFlags TargetSlots) : IInventoryRelayEvent where T : IComponent { public SlotFlags TargetSlots { get; } = TargetSlots; public bool Active = false; public List Components = new(); }