blob: 3ffbcc8c34edb363f2e67b504d0517ea683158c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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;
}
|