Files
tbd-station-14/Content.Shared/Inventory/Events/RefreshEquipmentHudEvent.cs

14 lines
374 B
C#

namespace Content.Shared.Inventory.Events;
public sealed class RefreshEquipmentHudEvent<T> : EntityEventArgs, IInventoryRelayEvent where T : IComponent
{
public SlotFlags TargetSlots { get; init; }
public bool Active = false;
public object? ExtraData;
public RefreshEquipmentHudEvent(SlotFlags targetSlots)
{
TargetSlots = targetSlots;
}
}