新增WorkerEntitySystem系统

This commit is contained in:
YHH
2025-09-28 17:36:36 +08:00
parent f4e49c316e
commit a66f80a766
2 changed files with 819 additions and 1 deletions

View File

@@ -2,4 +2,12 @@
export { EntitySystem } from './EntitySystem';
export { ProcessingSystem } from './ProcessingSystem';
export { PassiveSystem } from './PassiveSystem';
export { IntervalSystem } from './IntervalSystem';
export { IntervalSystem } from './IntervalSystem';
export { WorkerEntitySystem } from './WorkerEntitySystem';
// Worker系统相关类型导出
export type {
WorkerProcessFunction,
WorkerSystemConfig,
SharedArrayBufferProcessFunction
} from './WorkerEntitySystem';