game-scanner 1.1.0

Game Scanner for any launcher and OS
1
2
3
4
5
6
7
pub fn repeat_vars(count: usize) -> String {
    assert_ne!(count, 0);
    let mut s = "?,".repeat(count);
    // Remove trailing comma
    s.pop();
    s
}