SharedRoguePointingArrowComponent.cs 352 B

12345678910111213141516
  1. using Robust.Shared.GameStates;
  2. using Robust.Shared.Serialization;
  3. namespace Content.Shared.Pointing.Components
  4. {
  5. [NetworkedComponent]
  6. public abstract partial class SharedRoguePointingArrowComponent : Component
  7. {
  8. }
  9. [Serializable, NetSerializable]
  10. public enum RoguePointingArrowVisuals : byte
  11. {
  12. Rotation
  13. }
  14. }