2024-06-19 05:47:35 +03:00
|
|
|
|
using Robust.Shared.Audio;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Content.Server._White.Wizard.Magic.Other;
|
2024-03-07 16:01:54 +00:00
|
|
|
|
|
|
|
|
|
|
[RegisterComponent]
|
|
|
|
|
|
public sealed partial class InstantRecallComponent : Component
|
|
|
|
|
|
{
|
|
|
|
|
|
public EntityUid? Item;
|
2024-06-19 05:47:35 +03:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Sound to play on use.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[DataField]
|
|
|
|
|
|
[ViewVariables]
|
|
|
|
|
|
public SoundSpecifier LinkSound;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Sound to play on use.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[DataField]
|
|
|
|
|
|
[ViewVariables]
|
|
|
|
|
|
public SoundSpecifier RecallSound;
|
2024-03-07 16:01:54 +00:00
|
|
|
|
}
|