Update framework
This commit is contained in:
3
framework/ui/text/interfaces/playable-sound.d.ts
vendored
Normal file
3
framework/ui/text/interfaces/playable-sound.d.ts
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
export interface IPlayableSound {
|
||||
play(): any;
|
||||
}
|
1
framework/ui/text/interfaces/playable-sound.js
Normal file
1
framework/ui/text/interfaces/playable-sound.js
Normal file
@@ -0,0 +1 @@
|
||||
export {};
|
7
framework/ui/text/interfaces/sound-set.d.ts
vendored
Normal file
7
framework/ui/text/interfaces/sound-set.d.ts
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
import { IPlayableSound } from './playable-sound';
|
||||
export interface SoundSet {
|
||||
open?: IPlayableSound;
|
||||
close?: IPlayableSound;
|
||||
scroll?: IPlayableSound;
|
||||
characterAppear?: IPlayableSound;
|
||||
}
|
1
framework/ui/text/interfaces/sound-set.js
Normal file
1
framework/ui/text/interfaces/sound-set.js
Normal file
@@ -0,0 +1 @@
|
||||
export {};
|
Reference in New Issue
Block a user