Files
Ragon/Ragon.Common/Protocol/IPacket.cs
T
2022-05-01 21:39:46 +04:00

10 lines
184 B
C#

using NetStack.Serialization;
namespace Ragon.Common
{
public interface IPacket
{
public void Serialize(BitBuffer buffer);
public void Deserialize(BitBuffer buffer);
}
}