rosu-memory-lib 1.3.1

A library to read osu! memory
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[derive(Debug, Clone, Copy)]
pub struct Key {
    pub pressed: bool,
    pub count: i32,
}
#[derive(Debug, Clone, Copy)]
pub struct KeyOverlay {
    pub key_1: Key,
    pub key_2: Key,
    pub mouse_1: Key,
    pub mouse_2: Key,
}