1 2 3 4 5 6 7 8
use bevy::prelude::App; struct Gem; struct Position { x: f32, y: f32} pub fn main() { App::build().run(); }