Update framework
This commit is contained in:
3
framework/ui/menu/interfaces/playable-sound.d.ts
vendored
Normal file
3
framework/ui/menu/interfaces/playable-sound.d.ts
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
export interface IPlayableSound {
|
||||
play(): any;
|
||||
}
|
1
framework/ui/menu/interfaces/playable-sound.js
Normal file
1
framework/ui/menu/interfaces/playable-sound.js
Normal file
@@ -0,0 +1 @@
|
||||
export {};
|
17
framework/ui/menu/interfaces/sound-set.d.ts
vendored
Normal file
17
framework/ui/menu/interfaces/sound-set.d.ts
vendored
Normal file
@@ -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;
|
||||
}
|
1
framework/ui/menu/interfaces/sound-set.js
Normal file
1
framework/ui/menu/interfaces/sound-set.js
Normal file
@@ -0,0 +1 @@
|
||||
export {};
|
Reference in New Issue
Block a user