mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-16 07:12:27 +02:00
13 lines
318 B
C#
13 lines
318 B
C#
using Robust.Shared.Physics;
|
|
|
|
namespace Robust.Shared.GameObjects
|
|
{
|
|
/// <summary>
|
|
/// Stores the relevant occluder children of this entity.
|
|
/// </summary>
|
|
public sealed class OccluderTreeComponent : Component
|
|
{
|
|
internal DynamicTree<OccluderComponent> Tree { get; set; } = default!;
|
|
}
|
|
}
|