assassin-bug/framework/ui/text/interfaces/sound-set.d.ts

8 lines
210 B
TypeScript

import { IPlayableSound } from './playable-sound';
export interface SoundSet {
open?: IPlayableSound;
close?: IPlayableSound;
scroll?: IPlayableSound;
characterAppear?: IPlayableSound;
}