Optimize pipe net appearance updating. (#6469)

Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com>
This commit is contained in:
Leon Friedrich
2022-02-09 16:10:55 +13:00
committed by GitHub
parent 544a892348
commit 21e0cd4256
9 changed files with 193 additions and 278 deletions

View File

@@ -9,8 +9,8 @@ namespace Content.Server.NodeContainer.Nodes
public interface IRotatableNode
{
/// <summary>
/// Rotates this <see cref="Node"/>.
/// Rotates this <see cref="Node"/>. Returns true if the node's connections need to be updated.
/// </summary>
void RotateEvent(ref RotateEvent ev);
bool RotateEvent(ref RotateEvent ev);
}
}