[][src]Attribute Macro uniui_gui_macro::u_main

#[u_main]

Macros allows to mark function as main entry point for UniUi Application

uniui_gui crate have to be presented in the scope.

wasm_bindgen should not be in dependencies of the crate

Example

#[uniui_gui::uni_main]
pub fn app_main(app: &mut uniui_gui::Application) {
    // ...
}