17 lines
352 B
C#
17 lines
352 B
C#
using Robust.Shared.GameStates;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Pointing.Components
|
|
{
|
|
[NetworkedComponent]
|
|
public abstract partial class SharedRoguePointingArrowComponent : Component
|
|
{
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum RoguePointingArrowVisuals : byte
|
|
{
|
|
Rotation
|
|
}
|
|
}
|