HumanBreak/mota.config.ts

17 lines
424 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

interface MotaConfig {
name: string;
/** 资源分组打包信息 */
resourceZip?: string[][];
resourceName?: string;
}
function defineConfig(config: MotaConfig): MotaConfig {
return config;
}
export default defineConfig({
// 这里修改塔的name请保持与全塔属性的完全相同否则发布之后可能无法进行游玩
name: 'HumanBreak',
resourceName: 'HumanBreakRes'
});