package component:go;
/// An example world for the component to target.
world example {
use wasvy:ecs/app.{commands, query};
/// An example system
export spin-cube: func(query: query);
/// Another system
export my-system: func(commands: commands, query: query);
/// This is important.
/// This makes it so the WASM module must implement the guest required functions by the Bevy host.
include wasvy:ecs/guest;
}