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