Skip to content

Commit 5ed2c2f

Browse files
committed
Change namespace of ZeroDepJson to LLlibs
1 parent e06cec3 commit 5ed2c2f

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Runtime/Client/GetRequests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.Collections.Generic;
22
#if LOOTLOCKER_USE_ZERODEPJSON
3-
using LootLocker.ZeroDepJson;
3+
using LLlibs.ZeroDepJson;
44
#endif
55

66
namespace LootLocker.Requests

Runtime/Client/LootLockerBaseServerAPI.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using System.Text;
77
using System.Net;
88
#if LOOTLOCKER_USE_ZERODEPJSON
9-
using LootLocker.ZeroDepJson;
9+
using LLlibs.ZeroDepJson;
1010
#elif LOOTLOCKER_USE_NEWTONSOFTJSON
1111
using Newtonsoft.Json;
1212
using Newtonsoft.Json.Linq;

Runtime/Client/LootLockerServerRequest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using System;
44
using LootLocker.LootLockerEnums;
55
#if LOOTLOCKER_USE_ZERODEPJSON
6-
using LootLocker.ZeroDepJson;
6+
using LLlibs.ZeroDepJson;
77
#elif LOOTLOCKER_USE_NEWTONSOFTJSON
88
using Newtonsoft.Json;
99
using Newtonsoft.Json.Serialization;

Runtime/Game/Requests/PlayerRequest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System;
22
using LootLocker.Requests;
33
#if LOOTLOCKER_USE_ZERODEPJSON
4-
using LootLocker.ZeroDepJson;
4+
using LLlibs.ZeroDepJson;
55
#elif LOOTLOCKER_USE_NEWTONSOFTJSON
66
using Newtonsoft.Json;
77
#else

Runtime/Libraries/ZeroDepJson/ZeroDepJson.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#pragma warning disable CA1031 // Do not catch general exception types
2323
#pragma warning disable CA1034 // Nested types should not be visible
2424

25-
namespace LootLocker
25+
namespace LLlibs
2626
{
2727
namespace ZeroDepJson
2828
{

0 commit comments

Comments
 (0)