H.O.N.K. mech (#14670)
Co-authored-by: deltanedas <@deltanedas:kde.org>
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
using Content.Shared.Mech.Equipment.Systems;
|
||||
using Robust.Shared.Audio;
|
||||
using Robust.Shared.GameStates;
|
||||
|
||||
namespace Content.Shared.Mech.Equipment.Components;
|
||||
|
||||
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
|
||||
[Access(typeof(MechSoundboardSystem))]
|
||||
public sealed partial class MechSoundboardComponent : Component
|
||||
{
|
||||
/// <summary>
|
||||
/// List of sounds that can be played
|
||||
/// </summary>
|
||||
[DataField("sounds"), ViewVariables(VVAccess.ReadWrite), AutoNetworkedField]
|
||||
public List<SoundCollectionSpecifier> Sounds = new();
|
||||
}
|
||||
Reference in New Issue
Block a user