2025-12-01 22:28:51 +08:00
|
|
|
export { TransformComponent, type Vector3, type Matrix2D } from './TransformComponent';
|
|
|
|
|
export { TransformSystem } from './TransformSystem';
|
|
|
|
|
export { HierarchyComponent } from './HierarchyComponent';
|
|
|
|
|
export { HierarchySystem } from './HierarchySystem';
|
|
|
|
|
export {
|
|
|
|
|
EnginePlugin,
|
|
|
|
|
// 类型导出
|
|
|
|
|
type LoadingPhase,
|
|
|
|
|
type SystemContext,
|
|
|
|
|
type IRuntimeModule,
|
|
|
|
|
type IPlugin
|
|
|
|
|
} from './EnginePlugin';
|
2025-12-03 22:15:22 +08:00
|
|
|
|
|
|
|
|
// Module Manifest types (unified module/plugin configuration)
|
|
|
|
|
export {
|
|
|
|
|
type ModuleManifest,
|
|
|
|
|
type ModuleCategory,
|
|
|
|
|
type ModulePlatform,
|
|
|
|
|
type ModuleExports
|
|
|
|
|
} from './ModuleManifest';
|