Module dotrix_core::services[][src]

👎 Deprecated since 0.5.0:

Please use services from dotrix crate instead

Expand description

Services are very important part of Dotrix. Technicaly the service is a standard Rust structure with methods. Logically, services are providers of interfaces to various features.

Developer should explicitly create an instance of a service and add it to a game using the crate::Dotrix application builder:

Re-exports

pub use crate::assets::Assets;
pub use crate::camera::Camera;
pub use crate::input::Input;
pub use crate::ray::Ray;
pub use crate::renderer::Renderer;
pub use crate::window::Window;

Structs

Frame tracking service

Centralized container service for uniforms and other data

Service to store and manage entities