Enhance ending sounds

This commit is contained in:
2025-02-23 17:50:02 -08:00
parent 81f498c804
commit f2f20b820e
19 changed files with 94 additions and 29 deletions

View File

@ -1,7 +1,9 @@
import { Sound } from "./sound.ts";
export type VNSceneMessage = {
type: "message";
text: string;
sfx?: string;
sfx?: Sound;
};
export type VNSceneCallback = {