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

13 lines
405 B
C#

namespace Content.Shared._Offbrand.StatusEffects;
[RegisterComponent]
[Access(typeof(ExaminableStatusEffectSystem))]
public sealed partial class ExaminableStatusEffectComponent : Component
{
/// <summary>
/// The desired message to show on examine. The target of this effect will be passed as $target to the message.
/// </summary>
[DataField(required: true)]
public LocId Message;
}