feat: add a new empty function to grab a handful of dice

This commit is contained in:
2025-11-16 08:05:08 +01:00
parent 97a0fbb163
commit 13d77f136e
2 changed files with 8 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
use crate::*;
impl Handful {
pub fn grab(dice: u16, sides: u16) -> Self {
todo!()
}
}

View File

@@ -1 +1 @@
pub mod handful_grab;