Files
OldThink/Content.Shared/Pointing/Components/SharedRoguePointingArrowComponent.cs

15 lines
280 B
C#
Raw Normal View History

2022-05-13 00:59:03 -07:00
using Robust.Shared.Serialization;
2021-06-09 22:19:39 +02:00
namespace Content.Shared.Pointing.Components
{
public abstract class SharedRoguePointingArrowComponent : Component
{
}
[Serializable, NetSerializable]
public enum RoguePointingArrowVisuals
{
Rotation
}
}