mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-01 09:37:03 +02:00
Co-authored-by: ElectroJr <leonsfriedrich@gmail.com> Co-authored-by: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
13 lines
395 B
C#
13 lines
395 B
C#
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.Physics;
|
|
using Robust.Shared.ViewVariables;
|
|
|
|
namespace Robust.Shared.ComponentTrees;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class LightTreeComponent : Component, IComponentTreeComponent<SharedPointLightComponent>
|
|
{
|
|
[ViewVariables]
|
|
public DynamicTree<ComponentTreeEntry<SharedPointLightComponent>> Tree { get; set; } = default!;
|
|
}
|