Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Unity3D/ConcurrentDictionary.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if !UNITY_WSA
#if !UNITY_5_6_OR_NEWER || NET_2_0 || NET_2_0_SUBSET
using System;
using System.Collections;
using System.Collections.Generic;
Expand All @@ -8,7 +8,7 @@
using System.Runtime.Serialization;
using System.Threading;

namespace TcpServer
namespace System.Collections.Concurrent
{

/// <summary>
Expand Down
1 change: 1 addition & 0 deletions Unity3D/PocoManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
using Newtonsoft.Json.Linq;
using Poco;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Diagnostics;
using System.Runtime.InteropServices;
Expand Down
1 change: 1 addition & 0 deletions Unity3D/TcpServer.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
using System;
using System.Threading;
using System.Collections;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.IO;
using System.Net;
Expand Down