1
0

ProtectedGridComponent.cs 260 B

123456789101112
  1. using Robust.Shared.GameStates;
  2. namespace Content.Shared.Tiles;
  3. /// <summary>
  4. /// Prevents floor tile updates when attached to a grid.
  5. /// </summary>
  6. [RegisterComponent, NetworkedComponent]
  7. public sealed partial class ProtectedGridComponent : Component
  8. {
  9. }