mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
14 lines
373 B
C#
14 lines
373 B
C#
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.GameStates;
|
|
using Robust.Shared.Physics;
|
|
using Robust.Shared.ViewVariables;
|
|
|
|
namespace Robust.Shared.Map.Components;
|
|
|
|
[RegisterComponent, NetworkedComponent]
|
|
public sealed class GridTreeComponent : Component
|
|
{
|
|
[ViewVariables]
|
|
public readonly B2DynamicTree<(EntityUid Uid, MapGridComponent Grid)> Tree = new();
|
|
}
|