fish-station/Content.Server/Atmos/Components/AtmosExposedComponent.cs
Flipp Syder c7c651e3de
Refactors TemperatureComponent and AtmosExposed to ECS (#4927)
Co-authored-by: Vera Aguilera Puerto <6766154+Zumorica@users.noreply.github.com>
2021-10-29 10:18:43 +02:00

14 lines
357 B
C#

using Robust.Shared.GameObjects;
namespace Content.Server.Atmos.Components
{
// not if i get there first - Flipp
/// <summary>
/// Represents that entity can be exposed to Atmos
/// </summary>
[RegisterComponent]
public class AtmosExposedComponent : Component
{
public override string Name => "AtmosExposed";
}
}