mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-01 17:47:24 +02:00
14 lines
414 B
C#
14 lines
414 B
C#
using Robust.Shared.ComponentTrees;
|
|
using Robust.Shared.Physics;
|
|
|
|
namespace Robust.Shared.GameObjects;
|
|
|
|
/// <summary>
|
|
/// Stores the relevant occluder children of this entity.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class OccluderTreeComponent : Component, IComponentTreeComponent<OccluderComponent>
|
|
{
|
|
public DynamicTree<ComponentTreeEntry<OccluderComponent>> Tree { get; set; } = default!;
|
|
}
|