FaxecuteComponent.cs 533 B

12345678910111213141516171819
  1. using Content.Shared.Damage;
  2. using Robust.Shared.GameStates;
  3. namespace Content.Shared.Fax.Components;
  4. /// <summary>
  5. /// A fax component which stores a damage specifier for attempting to fax a mob.
  6. /// </summary>
  7. [RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
  8. public sealed partial class FaxecuteComponent : Component
  9. {
  10. /// <summary>
  11. /// Type of damage dealt when entity is faxecuted.
  12. /// </summary>
  13. [DataField(required: true), AutoNetworkedField]
  14. public DamageSpecifier Damage = new();
  15. }