[][src]Trait bevy::prelude::RegisterType

pub trait RegisterType {
    fn register_component<T>(&mut self) -> &mut Self
    where
        T: Properties + DeserializeProperty + Component + FromResources
;
fn register_component_with<T>(
        &mut self,
        build: fn(ComponentRegistrationBuilder<T>) -> ComponentRegistrationBuilder<T>
    ) -> &mut Self
    where
        T: Properties + DeserializeProperty + Component + FromResources
;
fn register_properties<T>(&mut self) -> &mut Self
    where
        T: Properties + DeserializeProperty + FromResources
;
fn register_property<T>(&mut self) -> &mut Self
    where
        T: Property + DeserializeProperty
; }

Required methods

fn register_component<T>(&mut self) -> &mut Self where
    T: Properties + DeserializeProperty + Component + FromResources

fn register_component_with<T>(
    &mut self,
    build: fn(ComponentRegistrationBuilder<T>) -> ComponentRegistrationBuilder<T>
) -> &mut Self where
    T: Properties + DeserializeProperty + Component + FromResources

fn register_properties<T>(&mut self) -> &mut Self where
    T: Properties + DeserializeProperty + FromResources

fn register_property<T>(&mut self) -> &mut Self where
    T: Property + DeserializeProperty

Loading content...

Implementors

impl RegisterType for AppBuilder[src]

Loading content...