使用Lerna 和 monorepo管理项目结构

This commit is contained in:
YHH
2025-08-07 13:29:12 +08:00
parent 4479f0fab0
commit ea8523be35
135 changed files with 7058 additions and 372 deletions

View File

@@ -0,0 +1,15 @@
/**
* ECS Framework Network Plugin - 网络插件
*
* 为ECS框架提供网络同步和帧同步功能
*/
// 网络组件基类
export { NetworkComponent } from './NetworkComponent';
export { INetworkSyncable } from './INetworkSyncable';
// Protobuf序列化系统
export * from './Serialization';
// 快照系统(帧同步)
export * from './Snapshot';