mirror of
https://github.com/bevyengine/bevy
synced 2024-11-14 00:47:32 +00:00
12 lines
231 B
Rust
12 lines
231 B
Rust
use bevy::{log::LogPlugin, prelude::*};
|
|
|
|
fn main() {
|
|
App::build()
|
|
.add_plugin(LogPlugin::default())
|
|
.add_system(hello_wasm_system.system())
|
|
.run();
|
|
}
|
|
|
|
fn hello_wasm_system() {
|
|
info!("hello wasm");
|
|
}
|