dndgamerolls 0.1.10

DnD Game Rolls - D&D dice roller with CLI and 3D visualization using Bevy
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Throw Control Module
//!
//! This module handles mouse-controlled dice throwing mechanics.
//! The mouse position over the dice box determines the direction
//! and strength of dice throws. A 3D arrow indicates the throw target.

mod state;
mod systems;
mod ui;

pub use state::*;
pub use systems::*;
pub use ui::*;