12 lines
284 B
C#
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();
|
|
} |