2025-06-07 20:32:43 +08:00
|
|
|
// ECS系统导出
|
|
|
|
|
export { EntitySystem } from './EntitySystem';
|
|
|
|
|
export { ProcessingSystem } from './ProcessingSystem';
|
|
|
|
|
export { PassiveSystem } from './PassiveSystem';
|
2025-09-28 17:36:36 +08:00
|
|
|
export { IntervalSystem } from './IntervalSystem';
|
|
|
|
|
export { WorkerEntitySystem } from './WorkerEntitySystem';
|
|
|
|
|
|
|
|
|
|
// Worker系统相关类型导出
|
|
|
|
|
export type {
|
|
|
|
|
WorkerProcessFunction,
|
|
|
|
|
WorkerSystemConfig,
|
|
|
|
|
SharedArrayBufferProcessFunction
|
2025-11-01 17:41:50 +08:00
|
|
|
} from './WorkerEntitySystem';
|