Files
esengine/packages/editor-core/src/index.ts
2025-10-17 18:13:31 +08:00

25 lines
783 B
TypeScript

/**
* ECS Framework Editor Core
*
* Plugin-based editor framework for ECS Framework
*/
export * from './Plugins/IEditorPlugin';
export * from './Plugins/EditorPluginManager';
export * from './Services/UIRegistry';
export * from './Services/MessageHub';
export * from './Services/SerializerRegistry';
export * from './Services/EntityStoreService';
export * from './Services/ComponentRegistry';
export * from './Services/LocaleService';
export * from './Services/PropertyMetadata';
export * from './Services/ProjectService';
export * from './Services/ComponentDiscoveryService';
export * from './Services/LogService';
export * from './Services/SettingsRegistry';
export * from './Services/SceneManagerService';
export * from './Types/UITypes';
export * from './Types/IFileAPI';