18 lines
541 B
TypeScript
18 lines
541 B
TypeScript
|
|
export { TransformComponent, type Vector3, type Matrix2D } from './TransformComponent';
|
||
|
|
export { TransformSystem } from './TransformSystem';
|
||
|
|
export { HierarchyComponent } from './HierarchyComponent';
|
||
|
|
export { HierarchySystem } from './HierarchySystem';
|
||
|
|
export {
|
||
|
|
EnginePlugin,
|
||
|
|
// 类型导出
|
||
|
|
type PluginCategory,
|
||
|
|
type LoadingPhase,
|
||
|
|
type ModuleType,
|
||
|
|
type ModuleDescriptor,
|
||
|
|
type PluginDependency,
|
||
|
|
type PluginDescriptor,
|
||
|
|
type SystemContext,
|
||
|
|
type IRuntimeModule,
|
||
|
|
type IPlugin
|
||
|
|
} from './EnginePlugin';
|