新增syncvar高级特性,使用protobuf定义

This commit is contained in:
YHH
2025-08-07 20:23:49 +08:00
parent ea8523be35
commit 2d389308ea
45 changed files with 9656 additions and 454 deletions

View File

@@ -1,12 +1,23 @@
/**
* ECS Framework Network Plugin - 网络插件
*
* 为ECS框架提供网络同步和帧同步功能
* 为ECS框架提供完整的网络同步和多人游戏功能
* 支持客户端-服务端模式
*/
// 核心网络管理
export * from './Core';
// 消息系统
export * from './Messaging';
// SyncVar同步变量系统
export * from './SyncVar';
// 网络组件基类
export { NetworkComponent } from './NetworkComponent';
export { INetworkSyncable } from './INetworkSyncable';
export { NetworkRole } from './NetworkRole';
// Protobuf序列化系统
export * from './Serialization';