Delta-v/Content.Shared/Pointing/Components/SharedRoguePointingArrowCom...

17 lines
344 B
C#

using Robust.Shared.GameStates;
using Robust.Shared.Serialization;
namespace Content.Shared.Pointing.Components
{
[NetworkedComponent]
public abstract class SharedRoguePointingArrowComponent : Component
{
}
[Serializable, NetSerializable]
public enum RoguePointingArrowVisuals : byte
{
Rotation
}
}