From ebc89c75d96a4d14a6476b0a09194429291e138d Mon Sep 17 00:00:00 2001 From: Zynh Ludwig Date: Mon, 29 Jul 2024 22:46:23 -0700 Subject: [PATCH] actually using bevy --- src/main.rs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index e7a11a9..daa0064 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,3 +1,9 @@ +use bevy::prelude::*; + fn main() { - println!("Hello, world!"); + App::new().add_systems(Update, hello_world).run(); +} + +fn hello_world() { + println!("uwu!"); }