mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 05:59:03 +03:00
11 lines
236 B
C#
11 lines
236 B
C#
#nullable enable
|
|
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Shared.Pointing.Components
|
|
{
|
|
public class SharedPointingArrowComponent : Component
|
|
{
|
|
public sealed override string Name => "PointingArrow";
|
|
}
|
|
}
|