diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/IPacketBreaker.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/IPacketBreaker.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/IPacketBreaker.cs b/Client/Assets/Scripts/XMainClient/IPacketBreaker.cs new file mode 100644 index 00000000..3c7f8fd3 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/IPacketBreaker.cs @@ -0,0 +1,9 @@ +using System;
+
+namespace XMainClient
+{
+ public interface IPacketBreaker
+ {
+ int BreakPacket(byte[] data, int index, int len);
+ }
+}
|