mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 13:37:47 +03:00
* Mineral Scanner * doink * review * sunday funday * review and fix bugs i think? * Update MiningOverlay.cs (cherry picked from commit 85992518256e85c7980b784b6462727f9158a413)
14 lines
356 B
C#
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
|
|
}
|