13 lines
355 B
C#
13 lines
355 B
C#
using Robust.Shared.Audio;
|
|
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared._RMC14.Sound;
|
|
|
|
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
|
|
[Access(typeof(CMSoundSystem))]
|
|
public sealed partial class SoundOnDeathComponent : Component
|
|
{
|
|
[DataField(required: true), AutoNetworkedField]
|
|
public SoundSpecifier? Sound;
|
|
}
|