feat: chip sound effects

This commit is contained in:
2026-04-15 14:37:42 -04:00
Unverified
parent 9c25f1464c
commit 1f7a482e75
10 changed files with 53 additions and 2 deletions

4
connect4-ui/lib/sfx.ts Normal file
View File

@@ -0,0 +1,4 @@
export const CHIP_DROP_SOUND_PATHS = Array.from(
{ length: 7 },
(_, index) => `/sfx/chip_collide_${index + 1}.ogg`,
);