2023-10-19 02:32:18 +09:00
|
|
|
using Robust.Shared.Prototypes;
|
|
|
|
|
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
|
|
|
|
|
|
2024-01-28 18:18:54 +07:00
|
|
|
namespace Content.Server._White.Other;
|
2023-10-19 02:32:18 +09:00
|
|
|
|
|
|
|
|
[RegisterComponent]
|
|
|
|
|
public sealed partial class WindowMarkComponent : Component
|
|
|
|
|
{
|
|
|
|
|
[DataField("replacementProto", required: true, customTypeSerializer: typeof(PrototypeIdSerializer<EntityPrototype>))]
|
|
|
|
|
public string ReplacementProto = default!;
|
|
|
|
|
}
|