HumanBreak/mota.config.ts

13 lines
296 B
TypeScript
Raw Normal View History

2022-11-13 18:02:05 +08:00
interface MotaConfig {
name: string;
}
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
});