This commit is contained in:
Jonathan Jara 2025-04-29 00:54:19 -07:00
parent 391be0afd5
commit e3fa910bd0

View File

@ -1,3 +1,15 @@
use bevy::{color::palettes::css::{BLUE, PURPLE}, prelude::*};
fn main() {
println!("Hello, world!");
App::new()
.insert_resource(ClearColor(Color::srgb(1.0, 1.0, 1.0)))
.add_plugins(DefaultPlugins)
.add_systems(Startup, setup)
.run();
}
fn setup(mut commands: Commands){
commands.spawn(Camera2d);
}