使用Lerna 和 monorepo管理项目结构
This commit is contained in:
21
packages/core/src/index.ts
Normal file
21
packages/core/src/index.ts
Normal file
@@ -0,0 +1,21 @@
|
||||
/**
|
||||
* ECS Framework - 轻量级实体组件系统框架
|
||||
* 适用于Laya、Cocos Creator等JavaScript游戏引擎和H5小游戏开发
|
||||
*/
|
||||
|
||||
// 核心模块
|
||||
export { Core } from './Core';
|
||||
|
||||
// 核心管理器
|
||||
export { Emitter, FuncPack } from './Utils/Emitter';
|
||||
export { GlobalManager } from './Utils/GlobalManager';
|
||||
export { TimerManager } from './Utils/Timers/TimerManager';
|
||||
export { ITimer } from './Utils/Timers/ITimer';
|
||||
export { Timer } from './Utils/Timers/Timer';
|
||||
|
||||
// ECS核心组件
|
||||
export * from './ECS';
|
||||
|
||||
// 工具类和类型定义
|
||||
export * from './Utils';
|
||||
export * from './Types';
|
||||
Reference in New Issue
Block a user