aboutsummaryrefslogtreecommitdiff
path: root/webAO/viewport/interfaces/Viewport.ts
diff options
context:
space:
mode:
authorstonedDiscord <Tukz@gmx.de>2022-09-23 18:07:22 +0200
committerGitHub <noreply@github.com>2022-09-23 18:07:22 +0200
commit82983e0c38383ec2602b4f41327342d1c8d0a8fd (patch)
tree2c6af046c350e594143ddd5950f1fd373bfe6dda /webAO/viewport/interfaces/Viewport.ts
parenta732a654c058842e39917210e47ca7476fa7ef68 (diff)
parentc3bde03911eb41bb768d1f01c0857d69300e36b8 (diff)
Merge pull request #175 from caleb-mabry/more-function-removal-viewport
More function removal from viewport
Diffstat (limited to 'webAO/viewport/interfaces/Viewport.ts')
-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;
+}