* pipa * Weather effects * Weather in demiplanes! * demiplane enter roofs * Demiplane ruins * Update weather.yml * Update paper.yml * Update paper.yml
17 lines
315 B
C#
17 lines
315 B
C#
using Robust.Shared.Audio;
|
|
|
|
namespace Content.Shared._CP14.FarSound;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class CP14FarSoundComponent : Component
|
|
{
|
|
[DataField]
|
|
public SoundSpecifier? CloseSound;
|
|
|
|
[DataField]
|
|
public SoundSpecifier? FarSound;
|
|
|
|
[DataField]
|
|
public float FarRange = 50f;
|
|
}
|