6
StarHorizon_Public/Content.Shared/Inventory/Events/RefreshEquipmentHudEvent.cs
2026-01-24 12:49:55 +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();
}