23 lines
380 B
TypeScript
23 lines
380 B
TypeScript
|
|
/**
|
|||
|
|
* ECS Framework 网络库 - 客户端
|
|||
|
|
*
|
|||
|
|
* 提供网络客户端功能,包括连接管理、预测、插值等
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
// 核心模块
|
|||
|
|
export * from './core';
|
|||
|
|
|
|||
|
|
// 传输层
|
|||
|
|
export * from './transport';
|
|||
|
|
|
|||
|
|
// 装饰器
|
|||
|
|
export * from './decorators';
|
|||
|
|
|
|||
|
|
// 系统
|
|||
|
|
export * from './systems';
|
|||
|
|
|
|||
|
|
// 接口
|
|||
|
|
export * from './interfaces';
|
|||
|
|
|
|||
|
|
// 版本信息
|
|||
|
|
export const VERSION = '1.0.11';
|