1
0

PointingArrowComponent.cs 589 B

123456789101112131415161718
  1. using Content.Server.Pointing.EntitySystems;
  2. using Content.Shared.Pointing.Components;
  3. namespace Content.Server.Pointing.Components
  4. {
  5. [RegisterComponent]
  6. [Access(typeof(PointingSystem))]
  7. public sealed partial class PointingArrowComponent : SharedPointingArrowComponent
  8. {
  9. /// <summary>
  10. /// Whether or not this arrow will convert into a
  11. /// <see cref="RoguePointingArrowComponent"/> when its duration runs out.
  12. /// </summary>
  13. [ViewVariables(VVAccess.ReadWrite)]
  14. [DataField("rogue")]
  15. public bool Rogue;
  16. }
  17. }