diff --git a/MLAPI/MLAPI.csproj b/MLAPI/MLAPI.csproj index b6bd504..17d4cbf 100644 --- a/MLAPI/MLAPI.csproj +++ b/MLAPI/MLAPI.csproj @@ -56,7 +56,7 @@ </ItemGroup> <ItemGroup> <Compile Include="Data\TrackedPointData.cs" /> - <Compile Include="MonoBehaviours\Core\LagCompensationManager.cs" /> + <Compile Include="NetworkingManagerComponents\LagCompensationManager.cs" /> <Compile Include="MonoBehaviours\Core\NetworkedBehaviour.cs" /> <Compile Include="Data\NetworkedClient.cs" /> <Compile Include="MonoBehaviours\Core\NetworkedObject.cs" /> diff --git a/MLAPI/MonoBehaviours/Core/TrackedObject.cs b/MLAPI/MonoBehaviours/Core/TrackedObject.cs index 9f59278..821bdff 100644 --- a/MLAPI/MonoBehaviours/Core/TrackedObject.cs +++ b/MLAPI/MonoBehaviours/Core/TrackedObject.cs @@ -1,4 +1,5 @@ using MLAPI.Data; +using MLAPI.NetworkingManagerComponents; using System.Collections.Generic; using UnityEngine; diff --git a/MLAPI/MonoBehaviours/Core/LagCompensationManager.cs b/MLAPI/NetworkingManagerComponents/LagCompensationManager.cs similarity index 94% rename from MLAPI/MonoBehaviours/Core/LagCompensationManager.cs rename to MLAPI/NetworkingManagerComponents/LagCompensationManager.cs index ae54ff0..de73c0d 100644 --- a/MLAPI/MonoBehaviours/Core/LagCompensationManager.cs +++ b/MLAPI/NetworkingManagerComponents/LagCompensationManager.cs @@ -1,9 +1,10 @@ -using System; +using MLAPI.MonoBehaviours.Core; +using System; using System.Collections.Generic; using UnityEngine; using UnityEngine.Networking; -namespace MLAPI.MonoBehaviours.Core +namespace MLAPI.NetworkingManagerComponents { public static class LagCompensationManager {