gravitron 0.1.2

A GameEngine based on an ECS and Vulkan
Documentation
1
2
3
4
5
6
7
8
9
use thiserror::Error;

#[derive(Error, Debug)]
pub enum EngineBuildError {
  #[error("State is missing")]
  StateMissing,
  #[error("Scene is missing")]
  SceneMissing,
}