Initial Commit

This commit is contained in:
2025-10-13 21:23:02 +02:00
commit 874a3efa5b
14 changed files with 415 additions and 0 deletions

13
lib-utils/src/lib.rs Normal file
View File

@@ -0,0 +1,13 @@
use bevy::prelude::*;
pub fn print_hello_world() {
println!("Hello from utils crate!");
}
pub struct UtilsPlugin;
impl Plugin for UtilsPlugin {
fn build(&self, app: &mut App) {
app.add_systems(Startup, print_hello_world);
}
}