Files
RobustToolbox/Robust.Shared/GameObjects/Components/Light/OccluderTreeComponent.cs
2022-12-27 13:33:46 +11:00

14 lines
406 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 class OccluderTreeComponent : Component, IComponentTreeComponent<OccluderComponent>
{
public DynamicTree<ComponentTreeEntry<OccluderComponent>> Tree { get; set; } = default!;
}