Проектная работа - WIP

This commit is contained in:
2 changed files with 27 additions and 4 deletions
+8 -4
View File
@@ -21,9 +21,13 @@ fn main() {
// .add_systems(PostStartup, snake_game::debug::print_all_entities)
.add_systems(Update, (head_rotation,))
.add_systems(FixedUpdate, (moving,))
// .add_systems(
// PostUpdate,
// snake_game::debug::print_all_entities_by_press_enter,
// )
.add_systems(
PostUpdate,
(
//
snake_game::debug::print_all_entities_by_press_enter,
snake_game::debug::time_speed,
),
)
.run();
}