12 lines
280 B
C#
12 lines
280 B
C#
|
|
using System;
|
|||
|
|
using Robust.Shared.GameObjects;
|
|||
|
|
using Robust.Shared.Serialization;
|
|||
|
|
|
|||
|
|
namespace Content.Shared.GameObjects.Components.Pointing
|
|||
|
|
{
|
|||
|
|
public class SharedPointingArrowComponent : Component
|
|||
|
|
{
|
|||
|
|
public sealed override string Name => "PointingArrow";
|
|||
|
|
}
|
|||
|
|
}
|