Skip to content

Commit 8b95b7d

Browse files
committed
Moved NetworkClient and NetworkingConfiguration to Data namespace
1 parent 62fcfc0 commit 8b95b7d

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

MLAPI/Data/NetworkedClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Collections.Generic;
33
using UnityEngine;
44

5-
namespace MLAPI
5+
namespace MLAPI.Data
66
{
77
/// <summary>
88
/// A NetworkedClient

MLAPI/Data/NetworkingConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Security.Cryptography;
55
using UnityEngine.Networking;
66

7-
namespace MLAPI
7+
namespace MLAPI.Data
88
{
99
/// <summary>
1010
/// The configuration object used to start server, client and hosts

MLAPI/MonoBehaviours/Prototyping/NetworkedAnimator.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
using MLAPI.MonoBehaviours.Core;
1+
using MLAPI.Data;
2+
using MLAPI.MonoBehaviours.Core;
23
using System.Collections.Generic;
34
using System.IO;
45
using UnityEngine;

MLAPI/MonoBehaviours/Prototyping/NetworkedNavMeshAgent.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
using MLAPI.MonoBehaviours.Core;
1+
using MLAPI.Data;
2+
using MLAPI.MonoBehaviours.Core;
23
using System.Collections.Generic;
34
using System.IO;
45
using UnityEngine;

0 commit comments

Comments
 (0)