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-13 13:07:40 +08:00
|
|
|
// 核心客户端 (待实现)
|
|
|
|
|
// export * from './core/NetworkClient';
|
|
|
|
|
// export * from './core/ServerConnection';
|
2025-08-12 09:39:07 +08:00
|
|
|
|
2025-08-13 13:07:40 +08:00
|
|
|
// 传输层 (待实现)
|
|
|
|
|
// export * from './transport/WebSocketClient';
|
|
|
|
|
// export * from './transport/HttpClient';
|
2025-08-12 09:39:07 +08:00
|
|
|
|
2025-08-13 13:07:40 +08:00
|
|
|
// 系统层 (待实现)
|
|
|
|
|
// export * from './systems/ClientSyncSystem';
|
|
|
|
|
// export * from './systems/ClientRpcSystem';
|
|
|
|
|
// export * from './systems/InterpolationSystem';
|
2025-08-12 09:39:07 +08:00
|
|
|
|
2025-08-13 13:07:40 +08:00
|
|
|
// 平台适配器 (待实现)
|
|
|
|
|
// export * from './adapters/BrowserAdapter';
|
|
|
|
|
// export * from './adapters/CocosAdapter';
|
2025-08-12 09:39:07 +08:00
|
|
|
|
2025-08-13 13:07:40 +08:00
|
|
|
// 重新导出shared包的类型
|
|
|
|
|
export * from '@esengine/network-shared';
|