pub trait NativeClassMethods: NativeClass {
    fn register(builder: &ClassBuilder<Self>);
}
Expand description

Trait used to provide information of Godot-exposed methods of a script class.

Required Methods

👎Deprecated:

This method will be removed from the public API.

Function that registers all exposed methods to Godot.

Implementors