14 lines
326 B
C#
14 lines
326 B
C#
using Robust.Shared.Audio;
|
|
|
|
namespace Content.Server.LandMines;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class LandMineComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// Trigger sound effect when stepping onto landmine
|
|
/// </summary>
|
|
[DataField, ViewVariables(VVAccess.ReadWrite)]
|
|
public SoundSpecifier? Sound;
|
|
}
|