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