mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
13 lines
396 B
C#
13 lines
396 B
C#
using Robust.Client.GameObjects;
|
|
using Robust.Shared.ComponentTrees;
|
|
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.Physics;
|
|
|
|
namespace Robust.Client.ComponentTrees;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class LightTreeComponent: Component, IComponentTreeComponent<PointLightComponent>
|
|
{
|
|
public DynamicTree<ComponentTreeEntry<PointLightComponent>> Tree { get; set; } = default!;
|
|
}
|