Skip to content
This repository was archived by the owner on Feb 20, 2022. It is now read-only.

Commit 4c53364

Browse files
author
Vincent Cantin
committed
Moved the files in different places of the directory hierarchy, and changed the library’s namespace from “DDP” to “Moulin.DDP”.
1 parent 9350dac commit 4c53364

File tree

216 files changed

+31
-14
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

216 files changed

+31
-14
lines changed

unity-project/Assets/3rd party/websocket-sharp/websocket-sharp.csproj.meta

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

unity-project/Assets/Moulin.meta

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

unity-project/Assets/unity3d-ddp-client/account/DdpAccount.cs renamed to unity-project/Assets/Moulin/DDP/account/DdpAccount.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2828
using System.Security.Cryptography;
2929
using System.Collections;
3030

31-
namespace DDP {
31+
namespace Moulin.DDP {
3232

3333
public class DdpAccount {
3434

unity-project/Assets/unity3d-ddp-client/ddp/DdpConnection.cs renamed to unity-project/Assets/Moulin/DDP/ddp/DdpConnection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2828
using System.Collections;
2929
using System.Collections.Generic;
3030

31-
namespace DDP {
31+
namespace Moulin.DDP {
3232

3333
/*
3434
* DDP protocol:

unity-project/Assets/unity3d-ddp-client/ddp/DdpError.cs renamed to unity-project/Assets/Moulin/DDP/ddp/DdpError.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2626
using System;
2727
using System.Collections;
2828

29-
namespace DDP {
29+
namespace Moulin.DDP {
3030

3131
public class DdpError {
3232
public string errorCode;

unity-project/Assets/unity3d-ddp-client/ddp/MethodCall.cs renamed to unity-project/Assets/Moulin/DDP/ddp/MethodCall.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2626
using System;
2727
using System.Collections;
2828

29-
namespace DDP {
29+
namespace Moulin.DDP {
3030

3131
public class MethodCall {
3232

unity-project/Assets/unity3d-ddp-client/ddp/Subscription.cs renamed to unity-project/Assets/Moulin/DDP/ddp/Subscription.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2626
using System;
2727
using System.Collections;
2828

29-
namespace DDP {
29+
namespace Moulin.DDP {
3030

3131
public class Subscription {
3232
public string id;

unity-project/Assets/unity3d-ddp-client/local-db/DocumentCollection.cs renamed to unity-project/Assets/Moulin/DDP/local-db/DocumentCollection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2222
SOFTWARE.
2323
*/
2424

25-
namespace DDP {
25+
namespace Moulin.DDP {
2626

2727
public interface DocumentCollection {
2828
void Add(string docId, JSONObject fields);

unity-project/Assets/unity3d-ddp-client/local-db/JsonObjectCollection.cs renamed to unity-project/Assets/Moulin/DDP/local-db/JsonObjectCollection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2626
using System.Collections;
2727
using System.Collections.Generic;
2828

29-
namespace DDP {
29+
namespace Moulin.DDP {
3030

3131
public class JsonObjectCollection : DocumentCollection {
3232

unity-project/Assets/unity3d-ddp-client/local-db/LocalDB.cs renamed to unity-project/Assets/Moulin/DDP/local-db/LocalDB.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2727
using System.Collections;
2828
using System.Collections.Generic;
2929

30-
namespace DDP {
30+
namespace Moulin.DDP {
3131

3232
public class LocalDB {
3333

unity-project/Assets/unity3d-ddp-client/local-db/TypedCollection.cs renamed to unity-project/Assets/Moulin/DDP/local-db/TypedCollection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2626
using System.Collections;
2727
using System.Collections.Generic;
2828

29-
namespace DDP {
29+
namespace Moulin.DDP {
3030

3131
public class TypedCollection<DocType> : DocumentCollection {
3232

unity-project/Assets/unity3d-ddp-client/util/CoroutineHelper.cs renamed to unity-project/Assets/Moulin/DDP/util/CoroutineHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2727
using System;
2828
using System.Collections;
2929

30-
namespace DDP {
30+
namespace Moulin.DDP {
3131

3232
public class CoroutineHelper : MonoBehaviour {
3333

unity-project/Assets/unity3d-ddp-client/util/JSONObjectExtensions.cs renamed to unity-project/Assets/Moulin/DDP/util/JSONObjectExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2424

2525
using System;
2626

27-
namespace DDP {
27+
namespace Moulin.DDP {
2828

2929
public static class JSONObjectExtensions {
3030

unity-project/Assets/example/TestDdpAccount.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2424

2525
using UnityEngine;
2626
using System.Collections;
27-
using DDP;
27+
using Moulin.DDP;
2828

2929
public class TestDdpAccount : MonoBehaviour {
3030

unity-project/Assets/example/TestDdpClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2424

2525
using UnityEngine;
2626
using System.Collections;
27-
using DDP;
27+
using Moulin.DDP;
2828

2929
public class TestDdpClient : MonoBehaviour {
3030

unity-project/Assets/example/TestLocalDB.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2424

2525
using UnityEngine;
2626
using System.Collections;
27-
using DDP;
27+
using Moulin.DDP;
2828

2929
public class TestLocalDB : MonoBehaviour {
3030

0 commit comments

Comments
 (0)