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.
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);
}
}