Remove health analyzer component references (#15322)
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
using Robust.Shared.Serialization;
|
||||
|
||||
namespace Content.Shared.MedicalScanner;
|
||||
|
||||
/// <summary>
|
||||
/// On interacting with an entity retrieves the entity UID for use with getting the current damage of the mob.
|
||||
/// </summary>
|
||||
[Serializable, NetSerializable]
|
||||
public sealed class HealthAnalyzerScannedUserMessage : BoundUserInterfaceMessage
|
||||
{
|
||||
public readonly EntityUid? TargetEntity;
|
||||
|
||||
public HealthAnalyzerScannedUserMessage(EntityUid? targetEntity)
|
||||
{
|
||||
TargetEntity = targetEntity;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user