Files
tbd-station-14/Content.Shared/_Offbrand/Surgery/SurgeryGuideTargetComponent.cs
Janet Blackquill 579ea90d49 thusd refactoring
2025-10-03 12:21:48 -04:00

28 lines
729 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
{
[DataField]
public string Category = "Surgery";
}
[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;