rusty_flagon_lib 1.0.0

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

impl Roller {
    pub(crate) fn n3d6(&mut self) -> u16 {
        self.ydx(3, 6)
    }
}