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-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-13 13:07:40 +08:00
|
|
|
// 装饰器系统 (待实现)
|
|
|
|
|
// export * from './decorators/SyncVar';
|
|
|
|
|
// export * from './decorators/ServerRpc';
|
|
|
|
|
// export * from './decorators/ClientRpc';
|
|
|
|
|
// export * from './decorators/NetworkComponent';
|
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-13 13:07:40 +08:00
|
|
|
// 序列化系统 (待实现)
|
|
|
|
|
// export * from './serialization/NetworkSerializer';
|