Update framework

This commit is contained in:
2022-11-26 02:22:02 +01:00
parent 9a6ce1f832
commit ae057940af
508 changed files with 26011 additions and 14248 deletions

View File

@@ -0,0 +1,3 @@
export interface IPlayableSound {
play(): any;
}

View File

@@ -0,0 +1 @@
export {};

View 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;
}

View File

@@ -0,0 +1 @@
export {};