rezcraft 0.2.0

Minecraft like game written in rust using wgpu, supporting both native and wasm
Documentation
1
2
3
4
5
6
7
8
9
10
mod camera;
mod player;
mod ray;
mod state;
pub mod world;

pub use camera::{Camera, CameraController, Projection};
pub use player::Player;
pub use ray::move_pos;
pub use state::State;