mirror of
https://github.com/unanmed/HumanBreak.git
synced 2025-01-19 20:59:37 +08:00
27 lines
624 B
TypeScript
27 lines
624 B
TypeScript
interface MotaConfig {
|
||
name: string;
|
||
resourceName?: string;
|
||
zip?: Record<string, string[]>;
|
||
}
|
||
|
||
function defineConfig(config: MotaConfig): MotaConfig {
|
||
return config;
|
||
}
|
||
|
||
export default defineConfig({
|
||
// 这里修改塔的name,请保持与全塔属性的完全相同,否则发布之后可能无法进行游玩
|
||
name: 'HumanBreak',
|
||
resourceName: 'HumanBreakRes',
|
||
zip: {
|
||
'resource.zip': [
|
||
'autotiles/*',
|
||
'tilesets/*',
|
||
'materials/*',
|
||
'images/*',
|
||
'animates/*',
|
||
'sounds/*',
|
||
'fonts/*'
|
||
]
|
||
}
|
||
});
|