Remove health analyzer component references (#15322)
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
using Content.Shared.DoAfter;
|
||||
using Robust.Shared.Serialization;
|
||||
|
||||
namespace Content.Shared.MedicalScanner;
|
||||
|
||||
[Serializable, NetSerializable]
|
||||
public sealed class HealthAnalyzerDoAfterEvent : SimpleDoAfterEvent
|
||||
{
|
||||
}
|
||||
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
9
Content.Shared/MedicalScanner/HealthAnalyzerUiKey.cs
Normal file
9
Content.Shared/MedicalScanner/HealthAnalyzerUiKey.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
using Robust.Shared.Serialization;
|
||||
|
||||
namespace Content.Shared.MedicalScanner;
|
||||
|
||||
[Serializable, NetSerializable]
|
||||
public enum HealthAnalyzerUiKey : byte
|
||||
{
|
||||
Key
|
||||
}
|
||||
@@ -1,33 +0,0 @@
|
||||
using Content.Shared.DoAfter;
|
||||
using Robust.Shared.Serialization;
|
||||
|
||||
namespace Content.Shared.MedicalScanner
|
||||
{
|
||||
public abstract class SharedHealthAnalyzerComponent : Component
|
||||
{
|
||||
/// <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;
|
||||
}
|
||||
}
|
||||
|
||||
[Serializable, NetSerializable]
|
||||
public enum HealthAnalyzerUiKey : byte
|
||||
{
|
||||
Key
|
||||
}
|
||||
}
|
||||
|
||||
[Serializable, NetSerializable]
|
||||
public sealed class HealthAnalyzerDoAfterEvent : SimpleDoAfterEvent
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user