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
use crate::reader::common::GameMode;
use crate::reader::structs::Hit;

#[derive(Debug, Default)]
pub struct ResultScreenInfo {
    pub username: String,
    pub mode: GameMode,
    pub max_combo: i16,
    pub score: i32,
    pub hits: Hit,
    pub accuracy: f64,
}