mirror of
https://github.com/unanmed/HumanBreak.git
synced 2025-01-19 04:19:30 +08:00
13 lines
294 B
TypeScript
13 lines
294 B
TypeScript
|
interface MotaConfig {
|
|||
|
name: string;
|
|||
|
}
|
|||
|
|
|||
|
function defineConfig(config: MotaConfig): MotaConfig {
|
|||
|
return config;
|
|||
|
}
|
|||
|
|
|||
|
export default defineConfig({
|
|||
|
// 这里修改塔的name,请保持与全塔属性的完全相同,否则发布之后可能无法进行游玩
|
|||
|
name: 'template'
|
|||
|
});
|