chore: remove unused files, packages and imports

This commit is contained in:
2025-07-07 14:22:08 +02:00
parent 79795190f0
commit 4a41eba57e
9 changed files with 42 additions and 62 deletions

View File

@@ -1,16 +1,7 @@
import { createAudioStore } from '@elron/svelte-audio-store';
import { invoke } from '@tauri-apps/api/core';
import { type ClassValue, clsx } from 'clsx';
import { twMerge } from 'tailwind-merge';
const sounds = {
menuHeartbeat: '/audio/menuHeartbeat.mp3',
menuBack: '/audio/menuBack.wav',
menuHit: '/audio/menuHit.wav',
};
export const gameSounds = createAudioStore(sounds);
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}