11 lines
223 B
C#
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);
|
|||
|
}
|
|||
|
}
|