feat: audio mode

This commit is contained in:
2025-03-29 00:55:31 +00:00
parent ad5a800d1b
commit 17411e8f0d
9 changed files with 203 additions and 8 deletions

View File

@ -52,6 +52,7 @@ export interface ProfileData {
display: DisplayConfig;
network: NetworkConfig;
bepinex: BepInExConfig;
mu3_ini: Mu3IniConfig | undefined;
}
export interface SegatoolsConfig {
@ -88,10 +89,16 @@ export interface NetworkConfig {
subnet: string;
suffix: number | null;
}
export interface BepInExConfig {
console: boolean;
}
export interface Mu3IniConfig {
audio?: 'Shared' | 'Excl6Ch' | 'Excl2Ch';
// blacklist?: [number, number];
}
export interface Profile {
meta: ProfileMeta;
data: ProfileData;