mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-15 14:52:35 +02:00
13 lines
367 B
C#
13 lines
367 B
C#
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.Physics;
|
|
|
|
namespace Robust.Client.GameObjects
|
|
{
|
|
[RegisterComponent]
|
|
public sealed class RenderingTreeComponent : Component
|
|
{
|
|
internal DynamicTree<SpriteComponent> SpriteTree { get; set; } = default!;
|
|
internal DynamicTree<PointLightComponent> LightTree { get; set; } = default!;
|
|
}
|
|
}
|