Update framework
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
export interface IPlayableSound {
|
||||
play(): any;
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+17
@@ -0,0 +1,17 @@
|
||||
import { IPlayableSound } from './playable-sound';
|
||||
export interface SoundSet {
|
||||
open?: IPlayableSound;
|
||||
close?: IPlayableSound;
|
||||
boundary?: IPlayableSound;
|
||||
choose?: IPlayableSound;
|
||||
move?: IPlayableSound;
|
||||
scroller?: IPlayableSound;
|
||||
sliderLeft?: IPlayableSound;
|
||||
sliderRight?: IPlayableSound;
|
||||
wrap?: IPlayableSound;
|
||||
char?: IPlayableSound;
|
||||
delete?: IPlayableSound;
|
||||
enter?: IPlayableSound;
|
||||
checked?: IPlayableSound;
|
||||
unchecked?: IPlayableSound;
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
export {};
|
||||
Reference in New Issue
Block a user