assassin-bug/framework/ui/menu/sound-manager.d.ts

17 lines
521 B
TypeScript
Raw Permalink Normal View History

2022-11-26 01:22:02 +00:00
import { SoundSet } from './interfaces/sound-set';
export declare class SoundManager {
private soundSet;
private data;
constructor(soundSet?: SoundSet);
setSoundSet(soundSet: SoundSet): void;
handleSound(type: string, data?: any): void;
private handleEditSound;
private handleSelectorSound;
private handleSliderSound;
private handleFocusSound;
private handleOpenSound;
private handleCloseSound;
private handleChooseSound;
private handleCheckboxSound;
}