aboutsummaryrefslogtreecommitdiff
path: root/webAO/viewport/interfaces
diff options
context:
space:
mode:
Diffstat (limited to 'webAO/viewport/interfaces')
-rw-r--r--webAO/viewport/interfaces/Viewport.ts35
1 files changed, 27 insertions, 8 deletions
diff --git a/webAO/viewport/interfaces/Viewport.ts b/webAO/viewport/interfaces/Viewport.ts
index 3ffbcc8..5b428c1 100644
--- a/webAO/viewport/interfaces/Viewport.ts
+++ b/webAO/viewport/interfaces/Viewport.ts
@@ -1,17 +1,35 @@
import { ChatMsg } from "./ChatMsg";
+
export interface Viewport {
+ getTextNow: Function;
+ setTextNow: Function;
+ getChatmsg: Function;
+ setChatmsg: Function;
+ getSfxPlayed: Function;
+ setSfxPlayed: Function;
+ setTickTimer: Function;
+ getTickTimer: Function;
+ getAnimating: Function;
+ setAnimating: Function;
+ getLastEvidence: Function;
+ setLastEvidence: Function;
+ setLastCharacter: Function;
+ getLastCharacter: Function;
+ setShoutTimer: Function;
+ getShoutTimer: Function;
+ setTestimonyTimer: Function;
+ getTestimonyTimer: Function;
+ setTestimonyUpdater: Function;
+ getTestimonyUpdater: Function;
+ getTheme: Function;
+ setTheme: Function;
+ testimonyAudio: HTMLAudioElement;
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;
@@ -19,6 +37,7 @@ export interface Viewport {
music: any;
musicVolume: number;
setBackgroundName: Function;
- lastChar: string;
getBackgroundName: Function;
-} \ No newline at end of file
+ shoutaudio: HTMLAudioElement;
+ updater: any;
+}