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

17 lines
327 B
C#
Raw Normal View History

using System;
using Robust.Shared.GameObjects;
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
}
}