1
0
Fork 0

fixed update_card_dimensions

This commit is contained in:
Alexey 2025-02-27 11:16:52 +03:00
commit 0319cb5a0e
2 changed files with 21 additions and 18 deletions

View file

@ -2,7 +2,7 @@ use bevy::prelude::*;
use evolution_rs::{
plugins::*,
setup, test_setup_hand, update_hand_dimensions
setup, test_setup_hand
};
@ -17,6 +17,6 @@ use evolution_rs::{
fn main() {
App::new()
.add_plugins((DefaultPlugins,BasePropertiesPlugin))
.add_systems(Startup, (setup, test_setup_hand, update_hand_dimensions).chain())
.add_systems(Startup, (setup, test_setup_hand).chain())
.run();
}