implemented game loop!

This commit is contained in:
2026-01-02 23:39:45 +00:00
parent 2783bb6b2d
commit 0ddefb0b7f
6 changed files with 150 additions and 42 deletions

View File

@@ -3,7 +3,7 @@ use bevy::prelude::*;
mod components;
mod systems;
use systems::{gameplay::*, movement::*, setup::*};
use systems::{customer::*, gameplay::*, movement::*, setup::*};
fn main() {
App::new()
@@ -17,7 +17,10 @@ fn main() {
fryer_cook,
customer_serve,
update_progress_bar,
update_burger_indicators,
update_player_indicator,
spawn_customers,
despawn_customers,
update_customer_indicators,
),
)
.run();