Skip to content

Commit b639927

Browse files
committed
Moved LagCompensationManager to components
1 parent 389c2f6 commit b639927

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

MLAPI/MLAPI.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
</ItemGroup>
5757
<ItemGroup>
5858
<Compile Include="Data\TrackedPointData.cs" />
59-
<Compile Include="MonoBehaviours\Core\LagCompensationManager.cs" />
59+
<Compile Include="NetworkingManagerComponents\LagCompensationManager.cs" />
6060
<Compile Include="MonoBehaviours\Core\NetworkedBehaviour.cs" />
6161
<Compile Include="Data\NetworkedClient.cs" />
6262
<Compile Include="MonoBehaviours\Core\NetworkedObject.cs" />

MLAPI/MonoBehaviours/Core/TrackedObject.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using MLAPI.Data;
2+
using MLAPI.NetworkingManagerComponents;
23
using System.Collections.Generic;
34
using UnityEngine;
45

MLAPI/MonoBehaviours/Core/LagCompensationManager.cs renamed to MLAPI/NetworkingManagerComponents/LagCompensationManager.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
using System;
1+
using MLAPI.MonoBehaviours.Core;
2+
using System;
23
using System.Collections.Generic;
34
using UnityEngine;
45
using UnityEngine.Networking;
56

6-
namespace MLAPI.MonoBehaviours.Core
7+
namespace MLAPI.NetworkingManagerComponents
78
{
89
public static class LagCompensationManager
910
{

0 commit comments

Comments
 (0)