8 lines
210 B
TypeScript
8 lines
210 B
TypeScript
import { IPlayableSound } from './playable-sound';
|
|
export interface SoundSet {
|
|
open?: IPlayableSound;
|
|
close?: IPlayableSound;
|
|
scroll?: IPlayableSound;
|
|
characterAppear?: IPlayableSound;
|
|
}
|