2023-02-03 11:43:53 -08:00
|
|
|
namespace Content.Client.Chemistry.Visualizers;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// A component that changes color to match its contained reagents.
|
|
|
|
|
/// Managed by <see cref="SmokeVisualizerSystem"/>.
|
|
|
|
|
/// Only functions with smoke at the moment.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[RegisterComponent]
|
|
|
|
|
[Access(typeof(SmokeVisualizerSystem))]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class SmokeVisualsComponent : Component {}
|