This repository has been archived on 2024-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
TrueCraft/TrueCraft.API/Networking/IPacketSegmentProcessor.cs
2015-06-20 19:43:28 -07:00

13 lines
280 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace TrueCraft.API.Networking
{
public interface IPacketSegmentProcessor
{
bool ProcessNextSegment(byte[] nextSegment, int offset, int len, out IPacket packet);
}
}