aboutsummaryrefslogtreecommitdiff
path: root/webAO/viewport/interfaces
diff options
context:
space:
mode:
Diffstat (limited to 'webAO/viewport/interfaces')
-rw-r--r--webAO/viewport/interfaces/ChatMsg.ts66
-rw-r--r--webAO/viewport/interfaces/Desk.ts6
-rw-r--r--webAO/viewport/interfaces/Position.ts10
-rw-r--r--webAO/viewport/interfaces/Positions.ts6
-rw-r--r--webAO/viewport/interfaces/Testimony.ts4
-rw-r--r--webAO/viewport/interfaces/Viewport.ts76
6 files changed, 84 insertions, 84 deletions
diff --git a/webAO/viewport/interfaces/ChatMsg.ts b/webAO/viewport/interfaces/ChatMsg.ts
index 352674b..1e7078f 100644
--- a/webAO/viewport/interfaces/ChatMsg.ts
+++ b/webAO/viewport/interfaces/ChatMsg.ts
@@ -1,34 +1,34 @@
export interface ChatMsg {
- content: string;
- objection: number;
- sound: string;
- startpreanim?: boolean;
- startspeaking?: boolean;
- side: string;
- color: number;
- snddelay: number;
- preanimdelay?: number;
- speed: number;
- blips: string;
- self_offset?: number[];
- other_offset?: number[];
- showname?: string;
- nameplate?: string;
- flip?: number;
- other_flip?: number;
- effects?: string[];
- deskmod?: number;
- preanim?: string;
- other_name?: string;
- sprite?: string;
- name?: string;
- chatbox?: string;
- other_emote?: string;
- parsed?: HTMLSpanElement[];
- screenshake?: number;
- flash?: number;
- type?: number;
- evidence?: number;
- looping_sfx?: boolean;
- noninterrupting_preanim?: number;
- } \ No newline at end of file
+ content: string;
+ objection: number;
+ sound: string;
+ startpreanim?: boolean;
+ startspeaking?: boolean;
+ side: string;
+ color: number;
+ snddelay: number;
+ preanimdelay?: number;
+ speed: number;
+ blips: string;
+ self_offset?: number[];
+ other_offset?: number[];
+ showname?: string;
+ nameplate?: string;
+ flip?: number;
+ other_flip?: number;
+ effects?: string[];
+ deskmod?: number;
+ preanim?: string;
+ other_name?: string;
+ sprite?: string;
+ name?: string;
+ chatbox?: string;
+ other_emote?: string;
+ parsed?: HTMLSpanElement[];
+ screenshake?: number;
+ flash?: number;
+ type?: number;
+ evidence?: number;
+ looping_sfx?: boolean;
+ noninterrupting_preanim?: number;
+}
diff --git a/webAO/viewport/interfaces/Desk.ts b/webAO/viewport/interfaces/Desk.ts
index 872426a..2bcba96 100644
--- a/webAO/viewport/interfaces/Desk.ts
+++ b/webAO/viewport/interfaces/Desk.ts
@@ -1,4 +1,4 @@
export interface Desk {
- ao2?: string;
- ao1?: string;
-} \ No newline at end of file
+ ao2?: string;
+ ao1?: string;
+}
diff --git a/webAO/viewport/interfaces/Position.ts b/webAO/viewport/interfaces/Position.ts
index dea7238..11ec8e5 100644
--- a/webAO/viewport/interfaces/Position.ts
+++ b/webAO/viewport/interfaces/Position.ts
@@ -1,7 +1,7 @@
-import { Desk } from './Desk'
+import { Desk } from "./Desk";
export interface Position {
- bg?: string;
- desk?: Desk;
- speedLines: string;
-} \ No newline at end of file
+ bg?: string;
+ desk?: Desk;
+ speedLines: string;
+}
diff --git a/webAO/viewport/interfaces/Positions.ts b/webAO/viewport/interfaces/Positions.ts
index 0644962..745168d 100644
--- a/webAO/viewport/interfaces/Positions.ts
+++ b/webAO/viewport/interfaces/Positions.ts
@@ -1,5 +1,5 @@
-import { Position } from './Position'
+import { Position } from "./Position";
export interface Positions {
- [key: string]: Position;
-} \ No newline at end of file
+ [key: string]: Position;
+}
diff --git a/webAO/viewport/interfaces/Testimony.ts b/webAO/viewport/interfaces/Testimony.ts
index 61a7491..f51a3dd 100644
--- a/webAO/viewport/interfaces/Testimony.ts
+++ b/webAO/viewport/interfaces/Testimony.ts
@@ -1,3 +1,3 @@
export interface Testimony {
- [key: number]: string;
-} \ No newline at end of file
+ [key: number]: string;
+}
diff --git a/webAO/viewport/interfaces/Viewport.ts b/webAO/viewport/interfaces/Viewport.ts
index d6b8632..68d98ff 100644
--- a/webAO/viewport/interfaces/Viewport.ts
+++ b/webAO/viewport/interfaces/Viewport.ts
@@ -2,42 +2,42 @@
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;
- playSFX: Function;
- set_side: Function;
- updateTestimony: Function;
- disposeTestimony: Function;
- handleTextTick: Function;
- setSfxAudio: Function;
- getSfxAudio: Function;
- getBackgroundFolder: Function;
- blipChannels: HTMLAudioElement[];
- music: any;
- setBackgroundName: Function;
- getBackgroundName: Function;
- shoutaudio: HTMLAudioElement;
- updater: any;
+ 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;
+ playSFX: Function;
+ set_side: Function;
+ updateTestimony: Function;
+ disposeTestimony: Function;
+ handleTextTick: Function;
+ setSfxAudio: Function;
+ getSfxAudio: Function;
+ getBackgroundFolder: Function;
+ blipChannels: HTMLAudioElement[];
+ music: any;
+ setBackgroundName: Function;
+ getBackgroundName: Function;
+ shoutaudio: HTMLAudioElement;
+ updater: any;
}