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';
|
|
|
|
|
export {
|
|
|
|
|
WasmEcsCore,
|
|
|
|
|
ecsCore,
|
|
|
|
|
initializeEcs,
|
|
|
|
|
EntityId,
|
|
|
|
|
ComponentMask,
|
|
|
|
|
QueryResult,
|
2025-06-09 13:23:46 +08:00
|
|
|
PerformanceStats as WasmPerformanceStats,
|
|
|
|
|
WasmLoader,
|
|
|
|
|
JavaScriptFallback
|
|
|
|
|
} from './Wasm';
|