Files
2026-03-05 11:39:06 +08:00

12 lines
284 B
C#

using Fantasy.Entitas;
using Fantasy.Network;
using Fantasy.Serialize;
using ProtoBuf.Serializers;
namespace Fantasy;
public class SerializerComponent : Entity
{
public ISerialize Serialize;
public readonly MemoryStreamBufferPool BufferPool = new MemoryStreamBufferPool();
}