11 lines
223 B
C#
Raw Normal View History

2014-12-26 22:35:26 -07:00
using System;
namespace TrueCraft.API.Networking
{
public interface IPacket
{
byte ID { get; }
void ReadPacket(IMinecraftStream stream);
void WritePacket(IMinecraftStream stream);
}
}