refactor: renamed NetworkBehaviour to CommonNetworkBehaviour

This commit is contained in:
2026-03-06 11:55:10 +03:00
parent 6ca3f22b17
commit 35c7eb9578

View File

@@ -9,7 +9,7 @@ namespace Engine.Systems.Network;
/// <br/>
/// Disclaimer: It implements <see cref="IFirstFrameUpdate"/> and <see cref="ILastFrameUpdate"/> in virtual methods.
/// </summary>
public class NetworkBehaviour : Behaviour, IFirstFrameUpdate, ILastFrameUpdate
public class CommonNetworkBehaviour : Behaviour, IFirstFrameUpdate, ILastFrameUpdate
{
protected INetworkCommunicatorServer? server = null!;
protected INetworkCommunicatorClient? client = null!;