1
0
Fork 0

property array for animal (traits sync and send are not yet implemented)

This commit is contained in:
Rendo 2025-02-15 22:01:40 +05:00
commit ba9be4e17b
2 changed files with 10 additions and 6 deletions

View file

@ -1,6 +1,9 @@
use bevy::prelude::*;
use crate::properties::Property;
#[derive(Component)]
pub struct Animal {
//pub properties: Vec<тут крч пропертис>
}
pub properties: Vec<Box<dyn Property>>
}