sprocket_engine 0.2.1

A vulkan game engine
Documentation
1
2
3
4
5
6
7
/// A trait that defines the application
/// Initialization can be done before or inside the run function by a custom setup function
pub trait Application {
    /// Enters the main loop of the application
    /// Is responsible for handling events, rendering and physics
    fn run(&mut self);
}