mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 05:27:38 +03:00
# Description Added in penlights that spawn in Medical Staff PDAs. --- # TODO - [x] EyeCheck system - [x] Add in the bloody pens. --- <details><summary><h1>Media</h1></summary> <p> https://github.com/user-attachments/assets/dc746aa2-782e-4d86-b9ef-9e012343fb87 </p> </details> --- # Changelog 🆑 Tilkku - add: Added Pen Lights - add: Eye Examination --------- Signed-off-by: SleepyScarecrow <136123749+SleepyScarecrow@users.noreply.github.com> Co-authored-by: VMSolidus <evilexecutive@gmail.com>
25 lines
686 B
C#
25 lines
686 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Medical;
|
|
[Serializable, NetSerializable]
|
|
public sealed class PenLightUserMessage : BoundUserInterfaceMessage
|
|
{
|
|
public readonly NetEntity? TargetEntity;
|
|
public bool? Blind;
|
|
public bool? Drunk;
|
|
public bool? EyeDamage;
|
|
public bool? Healthy;
|
|
public bool? SeeingRainbows;
|
|
|
|
public PenLightUserMessage(NetEntity? targetEntity, bool? blind, bool? drunk, bool? eyeDamage, bool? healthy, bool? seeingRainbows)
|
|
{
|
|
TargetEntity = targetEntity;
|
|
Blind = blind;
|
|
Drunk = drunk;
|
|
EyeDamage = eyeDamage;
|
|
Healthy = healthy;
|
|
SeeingRainbows = seeingRainbows;
|
|
}
|
|
}
|
|
|