itertools bump
parent
ea93d50e44
commit
89fa6b8a0f
|
@ -1276,7 +1276,7 @@ dependencies = [
|
||||||
"bitflags 2.6.0",
|
"bitflags 2.6.0",
|
||||||
"cexpr",
|
"cexpr",
|
||||||
"clang-sys",
|
"clang-sys",
|
||||||
"itertools 0.12.1",
|
"itertools 0.13.0",
|
||||||
"log",
|
"log",
|
||||||
"prettyplease",
|
"prettyplease",
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
|
|
BIN
assets/grave.png
BIN
assets/grave.png
Binary file not shown.
Before Width: | Height: | Size: 236 B |
|
@ -1,6 +1,11 @@
|
||||||
|
use std::f32::consts::PI;
|
||||||
|
|
||||||
use bevy::prelude::*;
|
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;
|
pub struct EnemyPlugin;
|
||||||
|
|
||||||
|
|
|
@ -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 common::mouse::{Mouse, MousePlugin};
|
||||||
use gamepad::GamepadPlugin;
|
use gamepad::GamepadPlugin;
|
||||||
use level::LevelPlugin;
|
use level::LevelPlugin;
|
||||||
|
|
Loading…
Reference in New Issue