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

12 lines
278 B
C#

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