2025-06-08 21:50:50 +08:00
|
|
|
/**
|
|
|
|
|
* 工具模块导出
|
|
|
|
|
*/
|
|
|
|
|
|
2025-06-07 20:32:43 +08:00
|
|
|
export * from './Extensions';
|
|
|
|
|
export * from './Pool';
|
2025-06-08 21:50:50 +08:00
|
|
|
export * from './Emitter';
|
|
|
|
|
export * from './GlobalManager';
|
2025-06-07 20:32:43 +08:00
|
|
|
export * from './PerformanceMonitor';
|
2025-06-08 21:50:50 +08:00
|
|
|
export { Time } from './Time';
|
|
|
|
|
/**
|
|
|
|
|
* WebAssembly核心模块
|
|
|
|
|
* 提供高性能的ECS查询和计算功能
|
|
|
|
|
*/
|
|
|
|
|
export {
|
|
|
|
|
WasmEcsCore,
|
|
|
|
|
ecsCore,
|
|
|
|
|
initializeEcs,
|
|
|
|
|
Query,
|
|
|
|
|
EntityId,
|
|
|
|
|
ComponentMask,
|
|
|
|
|
QueryResult,
|
|
|
|
|
PerformanceStats
|
|
|
|
|
} from './WasmCore';
|