2022-12-28 04:03:25 +11:00
|
|
|
using Robust.Shared.GameStates;
|
|
|
|
|
|
2023-09-28 16:20:29 -07:00
|
|
|
namespace Content.Shared.Emoting;
|
|
|
|
|
|
|
|
|
|
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
|
|
|
|
|
public sealed partial class EmotingComponent : Component
|
2022-12-28 04:03:25 +11:00
|
|
|
{
|
2023-09-28 16:20:29 -07:00
|
|
|
[DataField, AutoNetworkedField]
|
|
|
|
|
[Access(typeof(EmoteSystem), Friend = AccessPermissions.ReadWrite, Other = AccessPermissions.Read)]
|
|
|
|
|
public bool Enabled = true;
|
2022-12-28 04:03:25 +11:00
|
|
|
}
|