Files
RobustToolbox/Robust.Shared/ComponentTrees/TreeRecursiveMoveEvent.cs
2022-12-27 13:33:46 +11:00

14 lines
281 B
C#

using Robust.Shared.GameObjects;
namespace Robust.Shared.ComponentTrees;
[ByRefEvent]
internal readonly struct TreeRecursiveMoveEvent
{
public readonly TransformComponent Xform;
public TreeRecursiveMoveEvent(TransformComponent xform)
{
Xform = xform;
}
}