1
0

BlockWeatherComponent.cs 274 B

123456789101112
  1. using Robust.Shared.GameStates;
  2. namespace Content.Shared.Weather;
  3. /// <summary>
  4. /// This entity will block the weather if it's anchored to the floor.
  5. /// </summary>
  6. [RegisterComponent, NetworkedComponent]
  7. public sealed partial class BlockWeatherComponent : Component
  8. {
  9. }