2025-08-12 09:39:07 +08:00
|
|
|
/**
|
2025-08-13 13:07:40 +08:00
|
|
|
* @esengine/network-shared
|
|
|
|
|
* ECS Framework网络层 - 共享组件和协议
|
2025-08-12 09:39:07 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
// 类型定义
|
2025-08-13 13:07:40 +08:00
|
|
|
export * from './types/NetworkTypes';
|
|
|
|
|
export * from './types/TransportTypes';
|
2025-08-12 09:39:07 +08:00
|
|
|
|
2025-08-13 13:07:40 +08:00
|
|
|
// 协议消息
|
|
|
|
|
export * from './protocols/MessageTypes';
|
2025-08-14 23:59:00 +08:00
|
|
|
export * from './protocols/MessageManager';
|
2025-08-12 09:39:07 +08:00
|
|
|
|
2025-08-13 13:07:40 +08:00
|
|
|
// 核心组件
|
|
|
|
|
export * from './components/NetworkIdentity';
|
2025-08-12 09:39:07 +08:00
|
|
|
|
2025-08-14 23:59:00 +08:00
|
|
|
// 传输层
|
|
|
|
|
export * from './transport/HeartbeatManager';
|
|
|
|
|
export * from './transport/ErrorHandler';
|
2025-08-12 09:39:07 +08:00
|
|
|
|
2025-08-13 13:07:40 +08:00
|
|
|
// 事件系统
|
|
|
|
|
export * from './events/NetworkEvents';
|
2025-08-12 09:39:07 +08:00
|
|
|
|
2025-08-14 23:59:00 +08:00
|
|
|
// 序列化系统
|
|
|
|
|
export * from './serialization/JSONSerializer';
|
|
|
|
|
export * from './serialization/MessageCompressor';
|
|
|
|
|
|
|
|
|
|
// 工具类
|
|
|
|
|
export * from './utils';
|