mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-26 18:17:12 +03:00
14 lines
350 B
C#
14 lines
350 B
C#
using Robust.Shared.Audio;
|
|
|
|
namespace Content.Server._White.Implants.Spawn;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class SpawnImplantComponent : Component
|
|
{
|
|
[DataField(required: true)]
|
|
public string SpawnId = string.Empty;
|
|
|
|
[DataField]
|
|
public SoundSpecifier SoundOnSpawn = new SoundPathSpecifier("/Audio/Weapons/ebladeon.ogg");
|
|
}
|