Files
tbd-station-14/Content.Shared/Movement/Components/FloorOccluderComponent.cs
2023-08-30 12:32:35 +10:00

13 lines
309 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared.Movement.Components;
/// <summary>
/// Applies floor occlusion to any <see cref="FloorOcclusionComponent"/> that intersect us.
/// </summary>
[RegisterComponent, NetworkedComponent]
public sealed partial class FloorOccluderComponent : Component
{
}