Files
esengine/packages/editor-core/src/index.ts
2025-10-15 00:40:27 +08:00

22 lines
668 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/ComponentLoaderService';
export * from './Types/UITypes';