feat: add roll method to Dice

This commit is contained in:
2025-11-15 12:41:41 +01:00
parent dd22385aff
commit f1dfbb0fff
11 changed files with 58 additions and 2 deletions

View File

@@ -1,5 +1,6 @@
use oxydice_lib::*;
fn main() {
let dice = dice::Dice::grab(3, 6);
let mut dice = dice::Dice::grab(3, 6);
dice.roll();
}