using Content.Shared.NodeContainer;
namespace Content.Server.NodeContainer.Nodes
{
///
/// A that implements this will have its called when its
/// is rotated.
///
public interface IRotatableNode
{
///
/// Rotates this . Returns true if the node's connections need to be updated.
///
bool RotateNode(in MoveEvent ev);
}
}