2014-12-27 00:21:19 -07:00

11 lines
223 B
C#

using System;
namespace TrueCraft.API.Networking
{
public interface IPacket
{
byte ID { get; }
void ReadPacket(IMinecraftStream stream);
void WritePacket(IMinecraftStream stream);
}
}