2024-07-02 12:55:25 +03:00
|
|
|
using Robust.Shared.Audio;
|
|
|
|
|
|
2024-01-28 18:18:54 +07:00
|
|
|
namespace Content.Server._White.Other.DeathGasps;
|
2023-06-13 19:33:50 +00:00
|
|
|
|
|
|
|
|
[RegisterComponent]
|
|
|
|
|
public sealed partial class DeathGaspsComponent : Component
|
|
|
|
|
{
|
2024-07-02 12:55:25 +03:00
|
|
|
[DataField]
|
|
|
|
|
public SoundSpecifier DeathSounds = new SoundCollectionSpecifier("deathSounds");
|
|
|
|
|
|
|
|
|
|
[DataField]
|
|
|
|
|
public SoundSpecifier HeartSounds = new SoundCollectionSpecifier("heartSounds");
|
|
|
|
|
|
|
|
|
|
[DataField]
|
|
|
|
|
public bool CanOtherHearDeathSound;
|
2023-06-13 19:33:50 +00:00
|
|
|
}
|