despero 0.1.0

Rusty game engine, using API Vulkan and implementing paradigm of ECS
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod components;
pub mod physics_handler;
pub mod debug_render;
pub mod error;

pub use components::*;
pub use physics_handler::*;
pub use debug_render::*;
pub use error::*;

pub use rapier3d::prelude::{
    RigidBodyBuilder,
    ColliderBuilder,
    RigidBodyHandle,
    ColliderHandle,
};