6
StarHorizon_Public/Content.Shared/Inventory/Events/RefreshEquipmentHudEvent.cs
2025-11-11 11:18:56 +03:00

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();
}