27 lines
607 B
C#
27 lines
607 B
C#
using Robust.Shared.Audio;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared._White.Economy;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class EftposComponent : Component
|
|
{
|
|
[ViewVariables]
|
|
public int? BankAccountId;
|
|
|
|
[ViewVariables]
|
|
public int Amount;
|
|
|
|
[DataField("soundApply")]
|
|
public SoundSpecifier SoundApply = new SoundPathSpecifier("/Audio/White/Machines/chime.ogg");
|
|
|
|
[DataField("soundDeny")]
|
|
public SoundSpecifier SoundDeny = new SoundPathSpecifier("/Audio/White/Machines/buzz-sigh.ogg");
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum EftposKey
|
|
{
|
|
Key
|
|
}
|