19 lines
520 B
TypeScript
19 lines
520 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 './Types/UITypes';
|