| 12345678910111213 |
- 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();
- }
|