masuda 0.1.0

pokemon rng functionality written in rust
Documentation
1
2
3
4
5
6
7
8
9
10
pub struct Profile {
    pub tid: u16,
    pub sid: u16,
}

impl Profile {
    pub fn new(tid: u16, sid: u16) -> Self {
        Self { tid, sid }
    }
}