First system

This commit is contained in:
Greg Shuflin 2025-01-08 01:42:10 -08:00
parent 13ce397d69
commit d679712dd8

View File

@ -1,3 +1,12 @@
fn main() {
println!("Hello, world!");
use bevy::prelude::*;
fn gamarjoba() {
println!("Gamarjoba, munde!");
}
fn main() {
App::new()
.add_systems(Update, gamarjoba)
.run();
}