macro_rules! main { ($entry:expr) => { ... }; }
Generate the ove_main entry point from a Rust closure or function.
ove_main
ove::main!(app_main); fn app_main() { // create resources... ove::run(); }