feat: remove pre-made binaurals

This commit is contained in:
MAZE 2025-02-13 19:38:44 +03:30
parent 3b829fce07
commit b8ed79f48a

View file

@ -6,22 +6,11 @@ import { places } from './sounds/places';
import { transport } from './sounds/transport'; import { transport } from './sounds/transport';
import { things } from './sounds/things'; import { things } from './sounds/things';
import { noise } from './sounds/noise'; import { noise } from './sounds/noise';
import { binaural } from './sounds/binaural';
import type { Categories } from './types'; import type { Categories } from './types';
export const sounds: { export const sounds: {
categories: Categories; categories: Categories;
} = { } = {
categories: [ categories: [nature, rain, animals, urban, places, transport, things, noise],
nature,
rain,
animals,
urban,
places,
transport,
things,
noise,
binaural,
],
}; };