mirror of
https://github.com/unanmed/HumanBreak.git
synced 2025-01-18 11:59:26 +08:00
17 lines
424 B
TypeScript
17 lines
424 B
TypeScript
interface MotaConfig {
|
||
name: string;
|
||
/** 资源分组打包信息 */
|
||
resourceZip?: string[][];
|
||
resourceName?: string;
|
||
}
|
||
|
||
function defineConfig(config: MotaConfig): MotaConfig {
|
||
return config;
|
||
}
|
||
|
||
export default defineConfig({
|
||
// 这里修改塔的name,请保持与全塔属性的完全相同,否则发布之后可能无法进行游玩
|
||
name: 'HumanBreak',
|
||
resourceName: 'HumanBreakRes'
|
||
});
|