diff options
| author | Caleb <caleb.mabry.15@cnu.edu> | 2022-09-10 11:09:49 -0400 |
|---|---|---|
| committer | Caleb <caleb.mabry.15@cnu.edu> | 2022-09-10 11:09:49 -0400 |
| commit | 108636666d474119892c4b3a2f3beadb767b006e (patch) | |
| tree | 32bffa6a2cb8cc3aca3a6e3fd36ac6847561da53 /webAO/viewport/interfaces/Viewport.ts | |
| parent | abba7630e13f7e5269c14c2c43b66b03559ddfe3 (diff) | |
Structured viewport a little differently
Diffstat (limited to 'webAO/viewport/interfaces/Viewport.ts')
| -rw-r--r-- | webAO/viewport/interfaces/Viewport.ts | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/webAO/viewport/interfaces/Viewport.ts b/webAO/viewport/interfaces/Viewport.ts new file mode 100644 index 0000000..3ffbcc8 --- /dev/null +++ b/webAO/viewport/interfaces/Viewport.ts @@ -0,0 +1,24 @@ +import { ChatMsg } from "./ChatMsg"; +export interface Viewport { + chat_tick: Function; + changeMusicVolume: Function; + reloadTheme: Function; + playSFX: Function; + set_side: Function; + initTestimonyUpdater: Function; + updateTestimony: Function; + disposeTestimony: Function; + handle_ic_speaking: Function; + handleTextTick: Function; + theme: string; + chatmsg: ChatMsg; + setSfxAudio: Function; + getSfxAudio: Function; + getBackgroundFolder: Function; + blipChannels: HTMLAudioElement[]; + music: any; + musicVolume: number; + setBackgroundName: Function; + lastChar: string; + getBackgroundName: Function; +}
\ No newline at end of file |
