HumanBreak/mota.config.ts

15 lines
362 B
TypeScript
Raw Normal View History

2022-11-13 18:02:05 +08:00
interface MotaConfig {
name: string;
2023-06-07 18:17:45 +08:00
/** 资源分组打包信息 */
resourceZip?: string[][];
2022-11-13 18:02:05 +08:00
}
function defineConfig(config: MotaConfig): MotaConfig {
return config;
}
export default defineConfig({
// 这里修改塔的name请保持与全塔属性的完全相同否则发布之后可能无法进行游玩
2022-11-16 23:01:23 +08:00
name: 'HumanBreak'
2022-11-13 18:02:05 +08:00
});