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; } -}