-
Notifications
You must be signed in to change notification settings - Fork 0
/
consts.rs
25 lines (25 loc) · 1.08 KB
/
consts.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
pub const CHATWHEEL_ALL_PATH: &str = "./data/chatwheel.json";
pub const CHATWHEEL_CONF_PATH: &str = "chatwheel.json";
pub const CHATWHEEL_CONF_AUDIO_PATH: &str = "audio";
pub const CHATWHEEL_SOCKET_PATH: &str = "/tmp/chatwheel-rs.input";
pub const CHATWHEEL_DEFAULT: &[&str] = &[
"ti2018_156", // Lakad Matataaag! Normalin, Normalin.
"ti10_174", // Это ГГ
"ti2018_154", // The next level play!
"ti10_191", // NAKUPUU
"ti10_195", // I'm not angry, I'm Just Disappointed
"ti10_177", // Да? Да? Да? Нет.
"ti10_276", // Что это?! Какая жесть!
"ti10_275", // See you later nerds
"ti10_230", // Ceeeb*
"ti2019_184", // This guy has no chill
"earthshaker2", // Let's shake things up!
"ember7", // Even a master falters.
"ancient6", // I waited ages but it was worth it.
"earth6", // Perfect timing.
"keeper3", // No mana.
"venomancer8", // Ah, sweet toxicity!
];
pub const NAME: &str = "chatwheel-rs";
pub const HEIGHT: i32 = 200;
pub const WIDTH: i32 = 400;