Files
Ragon/Ragon.Common/Protocol/IPacket.cs
T

10 lines
182 B
C#
Raw Normal View History

2022-04-24 09:05:15 +04:00
using NetStack.Serialization;
namespace Ragon.Core
{
2022-04-30 08:20:17 +04:00
public interface IPacket
2022-04-24 09:05:15 +04:00
{
public void Serialize(BitBuffer buffer);
public void Deserialize(BitBuffer buffer);
}
}