2025-08-12 09:39:07 +08:00
|
|
|
/**
|
2025-08-13 13:07:40 +08:00
|
|
|
* @esengine/network-client
|
|
|
|
|
* ECS Framework网络层 - 客户端实现
|
2025-08-12 09:39:07 +08:00
|
|
|
*/
|
|
|
|
|
|
2025-08-14 23:59:00 +08:00
|
|
|
// 核心客户端
|
|
|
|
|
export * from './core/NetworkClient';
|
|
|
|
|
export * from './core/MessageQueue';
|
|
|
|
|
export * from './core/ConnectionStateManager';
|
2025-08-12 09:39:07 +08:00
|
|
|
|
2025-08-14 23:59:00 +08:00
|
|
|
// 传输层
|
|
|
|
|
export * from './transport/WebSocketClient';
|
|
|
|
|
export * from './transport/ReconnectionManager';
|
2025-08-12 09:39:07 +08:00
|
|
|
|
2025-08-20 10:16:54 +08:00
|
|
|
// 系统
|
|
|
|
|
export * from './systems';
|
|
|
|
|
|
|
|
|
|
// 同步模块
|
|
|
|
|
export * from './sync';
|
|
|
|
|
|
2025-08-13 13:07:40 +08:00
|
|
|
// 重新导出shared包的类型
|
|
|
|
|
export * from '@esengine/network-shared';
|