Files
tbd-station-14/Content.Shared/AirlockPainter/Components/PaintableAirlockComponent.cs
2022-04-16 15:31:12 +10:00

13 lines
419 B
C#

using Content.Shared.AirlockPainter.Prototypes;
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
namespace Content.Server.AirlockPainter
{
[RegisterComponent]
public sealed class PaintableAirlockComponent : Component
{
[DataField("group", customTypeSerializer:typeof(PrototypeIdSerializer<AirlockGroupPrototype>))]
public string Group = default!;
}
}