15 lines
358 B
C#
15 lines
358 B
C#
using Content.Shared.Popups;
|
|
|
|
namespace Content.Shared._Offbrand.StatusEffects;
|
|
|
|
[RegisterComponent]
|
|
[Access(typeof(PopupOnAppliedStatusEffectSystem))]
|
|
public sealed partial class PopupOnAppliedStatusEffectComponent : Component
|
|
{
|
|
[DataField(required: true)]
|
|
public LocId Message;
|
|
|
|
[DataField]
|
|
public PopupType VisualType = PopupType.Small;
|
|
}
|