实现ServerRpc和ClientRpc装饰器

This commit is contained in:
YHH
2025-08-20 10:32:56 +08:00
parent 0a1d7ac083
commit 69616bbddc
9 changed files with 2826 additions and 1 deletions

View File

@@ -6,6 +6,7 @@
// 类型定义
export * from './types/NetworkTypes';
export * from './types/TransportTypes';
export * from './types/RpcTypes';
// 协议消息
export * from './protocols/MessageTypes';
@@ -36,6 +37,12 @@ export {
// 装饰器系统
export * from './decorators';
// RPC系统
export * from './rpc/RpcMetadataManager';
export * from './rpc/RpcCallHandler';
export * from './rpc/RpcCallProxy';
export * from './rpc/RpcReliabilityManager';
// 同步系统
export { SyncVarManager, SyncBatch } from './sync/SyncVarManager';
export {