refactor: nettoie l'architecture monde et les docs

This commit is contained in:
tom-boullay
2026-05-28 15:47:16 +02:00
parent 1a91b1d7ae
commit ba50224e6e
45 changed files with 89 additions and 726 deletions
+5 -2
View File
@@ -1,7 +1,10 @@
import { DEFAULT_CATEGORY_VOLUMES } from "@/data/audioConfig";
import {
DEFAULT_CATEGORY_VOLUMES,
type AudioCategory,
} from "@/data/audioConfig";
import { logger } from "@/utils/core/Logger";
export type AudioCategory = "music" | "sfx" | "dialogue";
export type { AudioCategory } from "@/data/audioConfig";
export type OneShotAudioCategory = Exclude<AudioCategory, "music">;
interface AudioContextWindow extends Window {