Files
ss14-wega/Content.Shared/_Wega/Genetics/Components/DnaModifierInjectorComponents.cs
Zekins 603098e292 Чистка сборки (#237)
* buildcleanup

* resourcescleanup

* fixlinter

* fixlinter2

* final
2025-11-03 23:52:18 +03:00

23 lines
826 B
C#

using Content.Shared.Genetics.Systems;
using Robust.Shared.Audio;
using Robust.Shared.GameStates;
namespace Content.Shared.Genetics;
[RegisterComponent, NetworkedComponent, Access(typeof(SharedDnaModifierSystem))]
public sealed partial class DnaModifierInjectorComponent : Component
{
[ViewVariables(VVAccess.ReadOnly), DataField("uniqueIdentifiers")]
public UniqueIdentifiersData? UniqueIdentifiers { get; set; } = default!;
[ViewVariables(VVAccess.ReadOnly)]
public List<EnzymesPrototypeInfo>? EnzymesPrototypes { get; set; } = default!;
[DataField("injectSound")]
public SoundSpecifier InjectSound = new SoundPathSpecifier("/Audio/Items/hypospray.ogg");
}
[RegisterComponent, Access(typeof(SharedDnaModifierSystem))]
public sealed partial class DnaModifierCleanRandomizeComponent : Component;