//! This example is a simple show off of the engine basic template.
//! It will create a window with a white background and the 'Hello World!' message will be printed at each frame.
uselotus_engine::*;your_game!(WindowConfiguration::default(),
setup,
update
);fnsetup(_context:&mut Context){}fnupdate(_context:&mut Context){eprintln!("Hello World!");}