pub trait Instanciable: GodotObject {
    fn construct() -> Ref<Self, Unique>;
}
Expand description

GodotObjects that have a zero argument constructor.

Required Methods§

source

fn construct() -> Ref<Self, Unique>

Implementors§