mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-01 09:37:03 +02:00
11 lines
221 B
C#
11 lines
221 B
C#
using Robust.Shared.Physics;
|
|
|
|
namespace Robust.Shared.GameObjects
|
|
{
|
|
[RegisterComponent]
|
|
public sealed class EntityLookupComponent : Component
|
|
{
|
|
internal DynamicTree<EntityUid> Tree = default!;
|
|
}
|
|
}
|