mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 13:37:47 +03:00
17 lines
327 B
C#
17 lines
327 B
C#
using System;
|
|
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Pointing.Components
|
|
{
|
|
public abstract class SharedRoguePointingArrowComponent : Component
|
|
{
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum RoguePointingArrowVisuals
|
|
{
|
|
Rotation
|
|
}
|
|
}
|