22 lines
720 B
TypeScript
22 lines
720 B
TypeScript
import type { ComponentProps } from 'react';
|
|
|
|
import {
|
|
RpgCreationRoleAssetStudioModal as RpgCreationRoleAssetStudioModalImpl,
|
|
} from './RpgCreationRoleAssetStudioModalImpl';
|
|
|
|
/**
|
|
* 工作包 C 完成后,角色资产工坊 façade 已直接桥接 RPG 创作目录下的真实实现。
|
|
* 旧入口仍保留兼容导出,后续视觉/动作工作流继续在该目录内部演进。
|
|
*/
|
|
export type RpgCreationRoleAssetStudioModalProps = ComponentProps<
|
|
typeof RpgCreationRoleAssetStudioModalImpl
|
|
>;
|
|
|
|
export function RpgCreationRoleAssetStudioModal(
|
|
props: RpgCreationRoleAssetStudioModalProps,
|
|
) {
|
|
return <RpgCreationRoleAssetStudioModalImpl {...props} />;
|
|
}
|
|
|
|
export default RpgCreationRoleAssetStudioModal;
|