refactoring: heap -> span

This commit is contained in:
2022-04-30 08:20:17 +04:00
parent 9ab5d4aca5
commit 2dd81cd859
36 changed files with 494 additions and 489 deletions
+10
View File
@@ -0,0 +1,10 @@
using NetStack.Serialization;
namespace Ragon.Core
{
public interface IPacket
{
public void Serialize(BitBuffer buffer);
public void Deserialize(BitBuffer buffer);
}
}