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