6
StarHorizon_Public/Content.Shared/Mining/Components/MiningScannerViewableComponent.cs
2025-11-03 10:15:18 +03:00

14 lines
356 B
C#

using Robust.Shared.GameStates;
using Robust.Shared.Serialization;
namespace Content.Shared.Mining.Components;
[RegisterComponent, NetworkedComponent, Access(typeof(MiningScannerSystem))]
public sealed partial class MiningScannerViewableComponent : Component;
[Serializable, NetSerializable]
public enum MiningScannerVisualLayers : byte
{
Overlay
}