Files
OldThink/Content.Shared/GameObjects/Components/Pointing/SharedPointingArrowComponent.cs

10 lines
231 B
C#
Raw Normal View History

2020-11-18 08:16:56 +01:00
using Robust.Shared.GameObjects;
namespace Content.Shared.GameObjects.Components.Pointing
{
2020-11-18 08:16:56 +01:00
public class SharedPointingArrowComponent : Component
{
public sealed override string Name => "PointingArrow";
}
}