20 lines
553 B
C#
20 lines
553 B
C#
using Content.Server.Emoting.Systems;
|
|
using Content.Shared.Chat.Prototypes;
|
|
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Server.Emoting.Components;
|
|
|
|
/// <summary>
|
|
/// Component required for entities to be able to do body emotions (clap, flip, etc).
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
[Access(typeof(BodyEmotesSystem))]
|
|
public sealed partial class BodyEmotesComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// Emote sounds prototype id for body emotes.
|
|
/// </summary>
|
|
[DataField]
|
|
public ProtoId<EmoteSoundsPrototype>? SoundsId;
|
|
}
|