// 0.1.23 去重:示例插件以 runtime/demo-plugins.ts 为唯一源 import { examplePlugin } from '../../src/renderer/game/engine/runtime/demo-plugins' export { examplePlugin } /** 依赖/冲突测试用“坏插件”(依赖不存在的 core-ghost) */ export const brokenPlugin: import('../src/renderer/game/engine/kernel/plugin').CotycPlugin = { id: 'broken-ghost', name: '幽灵依赖', version: '0.0.0', description: 'testing', kind: 'content', dependencies: ['core-ghost'], install() { return undefined } }