Files
tbd-station-14/Content.Shared/_Offbrand/Surgery/SurgeryGuideTargetComponent.cs
Janet Blackquill 5fa17e22a1 De-MPL Offbrand
2025-09-27 22:43:24 -04:00

24 lines
670 B
C#

using Content.Shared.Construction.Prototypes;
using Robust.Shared.Prototypes;
using Robust.Shared.Serialization;
namespace Content.Shared._Offbrand.Surgery;
[RegisterComponent]
public sealed partial class SurgeryGuideTargetComponent : Component;
[Serializable, NetSerializable]
public enum SurgeryGuideUiKey : byte
{
Key
}
[Serializable, NetSerializable]
public sealed class SurgeryGuideStartSurgeryMessage(ProtoId<ConstructionPrototype> prototype) : BoundUserInterfaceMessage
{
public ProtoId<ConstructionPrototype> Prototype = prototype;
}
[Serializable, NetSerializable]
public sealed class SurgeryGuideStartCleanupMessage() : BoundUserInterfaceMessage;