8 lines
207 B
Rust
8 lines
207 B
Rust
use bevy::*;
|
|
use bevy::legion::prelude::*;
|
|
|
|
fn main() {
|
|
// Create a query which finds all `Position` and `Velocity` components
|
|
// let mut query = Read::<Transform>::query();
|
|
Application::run();
|
|
} |