refactor finish

This commit is contained in:
Rendo 2025-11-15 10:33:33 +05:00
commit 8fc89d4215
2 changed files with 4 additions and 4 deletions

View file

@ -1,8 +1,8 @@
use bevy::prelude::*;
pub struct DamagablePlugin;
pub struct MovablePlugin;
impl Plugin for DamagablePlugin {
impl Plugin for MovablePlugin {
fn build(&self, app: &mut App) {
app.insert_resource(Time::<Fixed>::from_hz(60.0))
.add_systems(FixedUpdate, movement_system);