rosu_memory_lib/reader/gameplay/
common.rs1use crate::reader::structs::Hit;
2
3#[derive(Debug, Clone)]
4pub struct GameplayInfo {
5 pub score: i32,
6 pub mods: u32,
7 pub combo: i16,
8 pub max_combo: i16,
9 pub hp: f64,
10 pub username: String,
11 pub ig_time: i32,
12 pub retries: i32,
13 pub hits: Hit,
14}