mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 13:37:47 +03:00
11 lines
358 B
C#
11 lines
358 B
C#
namespace Content.Server.Atmos.Components;
|
|
|
|
/// <summary>
|
|
/// When present on an entity, triggers the fixgridatmos command for its grid when the round starts.
|
|
/// Useful for ensuring standard atmosphere on round start during testing or mapping.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class FixGridAtmosOnRoundStartComponent : Component
|
|
{
|
|
}
|