12 lines
418 B
C#
12 lines
418 B
C#
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.Chemistry.Components;
|
|
|
|
/// <summary>
|
|
/// Allows an entity to examine reagents inside of containers, puddles and similiar via the examine verb.
|
|
/// Works when added either directly to an entity or to piece of clothing worn by that entity.
|
|
/// </summary>
|
|
[RegisterComponent, NetworkedComponent]
|
|
public sealed partial class SolutionScannerComponent : Component;
|
|
|