blob: 8a5db6b18ca24baf3161bda50cf012ec4c0982fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import { UPDATE_INTERVAL } from "../../client";
import { ChatMsg } from "../interfaces/ChatMsg";
export const defaultChatMsg = {
content: "",
objection: 0,
sound: "",
startpreanim: true,
startspeaking: false,
side: null,
color: 0,
snddelay: 0,
preanimdelay: 0,
speed: UPDATE_INTERVAL,
} as ChatMsg;
|