2022-12-28 04:03:25 +11:00
|
|
|
using Robust.Shared.GameStates;
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Emoting
|
|
|
|
|
{
|
|
|
|
|
[RegisterComponent, NetworkedComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class EmotingComponent : Component
|
2022-12-28 04:03:25 +11:00
|
|
|
{
|
|
|
|
|
[DataField("enabled"), Access(typeof(EmoteSystem),
|
|
|
|
|
Friend = AccessPermissions.ReadWrite,
|
|
|
|
|
Other = AccessPermissions.Read)] public bool Enabled = true;
|
|
|
|
|
}
|
|
|
|
|
}
|