12 lines
342 B
TypeScript
12 lines
342 B
TypeScript
|
|
/**
|
||
|
|
* Physics 2D Editor Module Entry
|
||
|
|
* 2D 物理编辑器模块入口
|
||
|
|
*/
|
||
|
|
|
||
|
|
// Re-export editor module
|
||
|
|
export { Physics2DEditorModule, physics2DEditorModule } from './Physics2DEditorModule';
|
||
|
|
export { physics2DEditorModule as default } from './Physics2DEditorModule';
|
||
|
|
|
||
|
|
// Re-export plugin
|
||
|
|
export { Physics2DPlugin } from './Physics2DPlugin';
|