6
StarHorizon_Public/Content.Server/Damage/Components/DamageRandomPopupComponent.cs
2025-11-15 12:24:44 +03:00

14 lines
407 B
C#

using Content.Server.Damage.Systems;
namespace Content.Server.Damage.Components;
[RegisterComponent, Access(typeof(DamageRandomPopupSystem))]
/// <summary>
/// Outputs a random pop-up from the list when an object receives damage
/// </summary>
public sealed partial class DamageRandomPopupComponent : Component
{
[DataField, ViewVariables(VVAccess.ReadWrite)]
public List<LocId> Popups = new();
}