rusty_flagon_lib 1.0.0

A library for character generation for OSE Classic roleplaying game
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::*;

impl Roller {
    pub(crate) fn new() -> Self {
        Self { rng: rand::rng() }
    }
}

// #[cfg(test)]
// mod unit_tests { use super::*; }