13 lines
222 B
Rust
13 lines
222 B
Rust
use bevy::{log::LogPlugin, prelude::*};
|
|
|
|
fn main() {
|
|
App::build()
|
|
.add_plugin(LogPlugin::default())
|
|
.add_system(hello_wasm_system)
|
|
.run();
|
|
}
|
|
|
|
fn hello_wasm_system() {
|
|
info!("hello wasm");
|
|
}
|