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
use thiserror::Error;

#[derive(Debug, Error)]
pub enum PhysicsError {
    #[error("Invalid RigidBody handle provided")]
    InvalidRigidBody,
    #[error("Invalid Collider handle provided")]
    InvalidCollider,
}