security HUD now shows a job icon on entities with a body (#18054)
This commit is contained in:
13
Content.Shared/Inventory/Events/RefreshEquipmentHudEvent.cs
Normal file
13
Content.Shared/Inventory/Events/RefreshEquipmentHudEvent.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user