更新network库及core库优化

This commit is contained in:
YHH
2025-08-12 09:39:07 +08:00
parent c178e2fbcc
commit 9f76d37a82
117 changed files with 17988 additions and 4099 deletions

View File

@@ -1,27 +0,0 @@
/**
* ECS Network Library
*
* 基于 ECS 架构和 TSRPC 的网络同步库
* 提供简洁易用的网络组件和同步机制
*/
// 核心组件
export { NetworkManager } from './NetworkManager';
export { NetworkIdentity } from './NetworkIdentity';
export { NetworkBehaviour } from './NetworkBehaviour';
// 装饰器
export { SyncVar } from './decorators/SyncVar';
export { ClientRpc } from './decorators/ClientRpc';
export { Command } from './decorators/Command';
// 核心管理器
export { SyncVarManager } from './Core/SyncVarManager';
export { RpcManager } from './Core/RpcManager';
export { NetworkRegistry } from './Core/NetworkRegistry';
// 传输层
export * from './transport';
// 类型定义
export * from './Types/NetworkTypes';