MarkingContainerComponent.cs 898 B

1234567891011121314151617181920
  1. // SPDX-FileCopyrightText: 2024 gluesniffler <159397573+gluesniffler@users.noreply.github.com>
  2. // SPDX-FileCopyrightText: 2025 Aiden <28298836+Aidenkrz@users.noreply.github.com>
  3. //
  4. // SPDX-License-Identifier: AGPL-3.0-or-later
  5. // This is a uh, very shitty copout to not wanting to modify the prototypes for felinids, and entities at large so they have ears.
  6. // I will do that at some point, for now I just want the funny surgery to work lol.
  7. using Robust.Shared.GameStates;
  8. using Content.Shared.Humanoid.Markings;
  9. using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
  10. namespace Content.Shared._Shitmed.Body.Organ;
  11. [RegisterComponent, NetworkedComponent]
  12. public sealed partial class MarkingContainerComponent : Component
  13. {
  14. [DataField(required: true, customTypeSerializer: typeof(PrototypeIdSerializer<MarkingPrototype>))]
  15. public string Marking = default!;
  16. }