itertools bump

master
Wynd 2025-01-12 16:57:13 +02:00
parent ea93d50e44
commit 89fa6b8a0f
4 changed files with 12 additions and 3 deletions

2
Cargo.lock generated
View File

@ -1276,7 +1276,7 @@ dependencies = [
"bitflags 2.6.0",
"cexpr",
"clang-sys",
"itertools 0.12.1",
"itertools 0.13.0",
"log",
"prettyplease",
"proc-macro2",

Binary file not shown.

Before

Width:  |  Height:  |  Size: 236 B

View File

@ -1,6 +1,11 @@
use std::f32::consts::PI;
use bevy::prelude::*;
use crate::{common::animation::SpriteAnimation, level::Unit};
use crate::{
common::{animation::SpriteAnimation, path_follow::PathFollow2D, velocity::Velocity},
level::Unit,
};
pub struct EnemyPlugin;

View File

@ -1,4 +1,8 @@
use bevy::{diagnostic::FrameTimeDiagnosticsPlugin, prelude::*, window::WindowResolution};
use bevy::{
diagnostic::FrameTimeDiagnosticsPlugin,
prelude::*,
window::{WindowMode, WindowResolution},
};
use common::mouse::{Mouse, MousePlugin};
use gamepad::GamepadPlugin;
use level::LevelPlugin;