mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 13:37:47 +03:00
12 lines
262 B
C#
12 lines
262 B
C#
/**
|
|
* GasAnalyzableComponent is a component for anything that can be examined with a gas analyzer.
|
|
*/
|
|
namespace Content.Server.Atmos.Components
|
|
{
|
|
[RegisterComponent]
|
|
public sealed class GasAnalyzableComponent : Component
|
|
{
|
|
// Empty
|
|
}
|
|
}
|