2025-05-17 17:00:32 +02:00
|
|
|
using Robust.Shared.GameStates;
|
|
|
|
|
|
2023-08-02 03:57:22 +08:00
|
|
|
namespace Content.Shared.Chemistry.Components;
|
|
|
|
|
|
2025-05-17 17:00:32 +02:00
|
|
|
/// <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;
|
2023-08-02 03:57:22 +08:00
|
|
|
|