Trait oxygengine_prototype::app::PrototypeApp
source · pub trait PrototypeApp {
// Required methods
fn clear_color(self, value: Rgba) -> Self;
fn sprite_filtering(self, value: ImageFiltering) -> Self;
fn view_size(self, value: Scalar) -> Self;
fn preload_asset(self, path: impl ToString) -> Self;
fn input_mappings(self, mappings: InputMappings) -> Self;
fn nodes(self, nodes: ScriptedNodes) -> Self;
fn scripting_registry(self, registry: Registry) -> Self;
fn run(self);
}