├── KCP_PInvoke ├── kcp_native.cs └── kcp_native_dll │ ├── ReadMe.txt │ ├── dllmain.cpp │ ├── ikcp.c │ ├── ikcp.h │ ├── kcpdll.vcxproj │ ├── kcpdll.vcxproj.filters │ ├── stdafx.cpp │ ├── stdafx.h │ ├── targetver.h │ ├── x86 │ ├── ikcp.dll │ ├── ikcp.dll.meta │ ├── ikcp.pdb │ └── ikcp.pdb.meta │ └── x86_64 │ ├── ikcp.dll │ ├── ikcp.dll.meta │ ├── ikcp.pdb │ └── ikcp.pdb.meta ├── KcpProject.csproj ├── KcpProject.csproj.user ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── README.md ├── Unity3D ├── KCPProxy_BE.cs ├── KCPProxy_LE.cs ├── KCPReceiveListener.cs ├── KCPSocket.cs ├── KCP_BE.cs ├── KCP_H.cs ├── KCP_LE.cs ├── NetworkDebuger.cs ├── SwitchQueue.cs └── kcpUnity3DClientTest.cs ├── bin └── Debug │ ├── UnityEngine.dll │ └── UnityEngine.xml ├── common ├── kcp.cs └── switch_queue.cs ├── v1 └── udp_socket_v1.cs └── v2 └── udp_socket_v2.cs /KCP_PInvoke/kcp_native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RainsSoft/kcp-csharp/HEAD/KCP_PInvoke/kcp_native.cs -------------------------------------------------------------------------------- /KCP_PInvoke/kcp_native_dll/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RainsSoft/kcp-csharp/HEAD/KCP_PInvoke/kcp_native_dll/ReadMe.txt -------------------------------------------------------------------------------- /KCP_PInvoke/kcp_native_dll/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RainsSoft/kcp-csharp/HEAD/KCP_PInvoke/kcp_native_dll/dllmain.cpp -------------------------------------------------------------------------------- /KCP_PInvoke/kcp_native_dll/ikcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RainsSoft/kcp-csharp/HEAD/KCP_PInvoke/kcp_native_dll/ikcp.c -------------------------------------------------------------------------------- /KCP_PInvoke/kcp_native_dll/ikcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RainsSoft/kcp-csharp/HEAD/KCP_PInvoke/kcp_native_dll/ikcp.h -------------------------------------------------------------------------------- /KCP_PInvoke/kcp_native_dll/kcpdll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RainsSoft/kcp-csharp/HEAD/KCP_PInvoke/kcp_native_dll/kcpdll.vcxproj -------------------------------------------------------------------------------- /KCP_PInvoke/kcp_native_dll/kcpdll.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RainsSoft/kcp-csharp/HEAD/KCP_PInvoke/kcp_native_dll/kcpdll.vcxproj.filters -------------------------------------------------------------------------------- /KCP_PInvoke/kcp_native_dll/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RainsSoft/kcp-csharp/HEAD/KCP_PInvoke/kcp_native_dll/stdafx.cpp -------------------------------------------------------------------------------- /KCP_PInvoke/kcp_native_dll/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RainsSoft/kcp-csharp/HEAD/KCP_PInvoke/kcp_native_dll/stdafx.h -------------------------------------------------------------------------------- /KCP_PInvoke/kcp_native_dll/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RainsSoft/kcp-csharp/HEAD/KCP_PInvoke/kcp_native_dll/targetver.h -------------------------------------------------------------------------------- /KCP_PInvoke/kcp_native_dll/x86/ikcp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RainsSoft/kcp-csharp/HEAD/KCP_PInvoke/kcp_native_dll/x86/ikcp.dll -------------------------------------------------------------------------------- /KCP_PInvoke/kcp_native_dll/x86/ikcp.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RainsSoft/kcp-csharp/HEAD/KCP_PInvoke/kcp_native_dll/x86/ikcp.dll.meta -------------------------------------------------------------------------------- /KCP_PInvoke/kcp_native_dll/x86/ikcp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RainsSoft/kcp-csharp/HEAD/KCP_PInvoke/kcp_native_dll/x86/ikcp.pdb -------------------------------------------------------------------------------- /KCP_PInvoke/kcp_native_dll/x86/ikcp.pdb.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RainsSoft/kcp-csharp/HEAD/KCP_PInvoke/kcp_native_dll/x86/ikcp.pdb.meta -------------------------------------------------------------------------------- /KCP_PInvoke/kcp_native_dll/x86_64/ikcp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RainsSoft/kcp-csharp/HEAD/KCP_PInvoke/kcp_native_dll/x86_64/ikcp.dll -------------------------------------------------------------------------------- /KCP_PInvoke/kcp_native_dll/x86_64/ikcp.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RainsSoft/kcp-csharp/HEAD/KCP_PInvoke/kcp_native_dll/x86_64/ikcp.dll.meta -------------------------------------------------------------------------------- /KCP_PInvoke/kcp_native_dll/x86_64/ikcp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RainsSoft/kcp-csharp/HEAD/KCP_PInvoke/kcp_native_dll/x86_64/ikcp.pdb -------------------------------------------------------------------------------- /KCP_PInvoke/kcp_native_dll/x86_64/ikcp.pdb.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RainsSoft/kcp-csharp/HEAD/KCP_PInvoke/kcp_native_dll/x86_64/ikcp.pdb.meta -------------------------------------------------------------------------------- /KcpProject.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RainsSoft/kcp-csharp/HEAD/KcpProject.csproj -------------------------------------------------------------------------------- /KcpProject.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RainsSoft/kcp-csharp/HEAD/KcpProject.csproj.user -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RainsSoft/kcp-csharp/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RainsSoft/kcp-csharp/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RainsSoft/kcp-csharp/HEAD/README.md -------------------------------------------------------------------------------- /Unity3D/KCPProxy_BE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RainsSoft/kcp-csharp/HEAD/Unity3D/KCPProxy_BE.cs -------------------------------------------------------------------------------- /Unity3D/KCPProxy_LE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RainsSoft/kcp-csharp/HEAD/Unity3D/KCPProxy_LE.cs -------------------------------------------------------------------------------- /Unity3D/KCPReceiveListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RainsSoft/kcp-csharp/HEAD/Unity3D/KCPReceiveListener.cs -------------------------------------------------------------------------------- /Unity3D/KCPSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RainsSoft/kcp-csharp/HEAD/Unity3D/KCPSocket.cs -------------------------------------------------------------------------------- /Unity3D/KCP_BE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RainsSoft/kcp-csharp/HEAD/Unity3D/KCP_BE.cs -------------------------------------------------------------------------------- /Unity3D/KCP_H.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RainsSoft/kcp-csharp/HEAD/Unity3D/KCP_H.cs -------------------------------------------------------------------------------- /Unity3D/KCP_LE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RainsSoft/kcp-csharp/HEAD/Unity3D/KCP_LE.cs -------------------------------------------------------------------------------- /Unity3D/NetworkDebuger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RainsSoft/kcp-csharp/HEAD/Unity3D/NetworkDebuger.cs -------------------------------------------------------------------------------- /Unity3D/SwitchQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RainsSoft/kcp-csharp/HEAD/Unity3D/SwitchQueue.cs -------------------------------------------------------------------------------- /Unity3D/kcpUnity3DClientTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RainsSoft/kcp-csharp/HEAD/Unity3D/kcpUnity3DClientTest.cs -------------------------------------------------------------------------------- /bin/Debug/UnityEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RainsSoft/kcp-csharp/HEAD/bin/Debug/UnityEngine.dll -------------------------------------------------------------------------------- /bin/Debug/UnityEngine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RainsSoft/kcp-csharp/HEAD/bin/Debug/UnityEngine.xml -------------------------------------------------------------------------------- /common/kcp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RainsSoft/kcp-csharp/HEAD/common/kcp.cs -------------------------------------------------------------------------------- /common/switch_queue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RainsSoft/kcp-csharp/HEAD/common/switch_queue.cs -------------------------------------------------------------------------------- /v1/udp_socket_v1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RainsSoft/kcp-csharp/HEAD/v1/udp_socket_v1.cs -------------------------------------------------------------------------------- /v2/udp_socket_v2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RainsSoft/kcp-csharp/HEAD/v2/udp_socket_v2.cs --------------------------------------------------------------------------------