nightshade 0.57.0

A cross-platform data-oriented game engine.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Collider-backed picking: the rapier collider set entity picking casts
//! against, and the commands that register and update it. Lives here so the
//! picking domain does not speak rapier.

pub mod commands;
pub mod queries;
pub mod resources;

pub use commands::*;
pub use queries::*;
pub use resources::*;