14 lines
448 B
TypeScript
14 lines
448 B
TypeScript
// ECS系统导出
|
|
export { EntitySystem } from './EntitySystem';
|
|
export { ProcessingSystem } from './ProcessingSystem';
|
|
export { PassiveSystem } from './PassiveSystem';
|
|
export { IntervalSystem } from './IntervalSystem';
|
|
export { WorkerEntitySystem } from './WorkerEntitySystem';
|
|
|
|
// Worker系统相关类型导出
|
|
export type {
|
|
WorkerProcessFunction,
|
|
WorkerSystemConfig,
|
|
SharedArrayBufferProcessFunction
|
|
} from './WorkerEntitySystem';
|