Files
tbd-station-14/Content.Shared/Weather/IgnoreWeatherComponent.cs
2023-03-11 14:11:19 +11:00

13 lines
263 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared.Weather;
/// <summary>
/// This entity will be ignored for considering weather on a tile
/// </summary>
[RegisterComponent, NetworkedComponent]
public sealed class IgnoreWeatherComponent : Component
{
}