pub trait SceneRet {
    // Required method
    fn scene(self) -> SceneResult;
}
Expand description

No need to implement, only allows for Scenes to turn into Boxes of scenes, simplifying the workflow.

Required Methods§

Implementors§

source§

impl<T: Scene + 'static> SceneRet for T