Files
tbd-station-14/Content.Shared/_Offbrand/Wounds/BrainGaspThresholdsComponent.cs
Janet Blackquill 5fa17e22a1 De-MPL Offbrand
2025-09-27 22:43:24 -04:00

17 lines
535 B
C#

using Content.Shared.Chat.Prototypes;
using Content.Shared.FixedPoint;
using Robust.Shared.GameStates;
using Robust.Shared.Prototypes;
namespace Content.Shared._Offbrand.Wounds;
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
public sealed partial class BrainGaspThresholdsComponent : Component
{
[DataField(required: true)]
public SortedDictionary<FixedPoint2, ProtoId<EmotePrototype>> MessageThresholds = new();
[DataField, AutoNetworkedField]
public ProtoId<EmotePrototype>? CurrentMessage;
}