From e5e95bed5642f850bbaee3a00bc06f7f939b40ea Mon Sep 17 00:00:00 2001 From: fenndragon Date: Wed, 18 Dec 2024 20:49:41 -0700 Subject: [PATCH] Delete Content.Shared/_RMC14/Guidebook/GuideEntryPrototype.cs --- .../_RMC14/Guidebook/GuideEntryPrototype.cs | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 Content.Shared/_RMC14/Guidebook/GuideEntryPrototype.cs diff --git a/Content.Shared/_RMC14/Guidebook/GuideEntryPrototype.cs b/Content.Shared/_RMC14/Guidebook/GuideEntryPrototype.cs deleted file mode 100644 index def6394cb8..0000000000 --- a/Content.Shared/_RMC14/Guidebook/GuideEntryPrototype.cs +++ /dev/null @@ -1,19 +0,0 @@ -using Content.Shared._RMC14.Prototypes; -using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Array; - -// ReSharper disable once CheckNamespace -namespace Content.Shared.Guidebook; - -public sealed partial class GuideEntryPrototype : IInheritingPrototype, ICMSpecific -{ - [ParentDataField(typeof(AbstractPrototypeIdArraySerializer))] - public string[]? Parents { get; } - - [NeverPushInheritance] - [AbstractDataField] - public bool Abstract { get; } - - [DataField] - public bool IsCM { get; } -}