diff --git a/src/properties/mod.rs b/src/properties/mod.rs index 92654ee..e054061 100644 --- a/src/properties/mod.rs +++ b/src/properties/mod.rs @@ -7,7 +7,7 @@ use bevy::prelude::Component; // Интересно, будет ли участвовать в моддинге #[bevy_trait_query::queryable] -pub trait Property: Sync + Send { +pub trait Property{ fn check_condition(self : &Self) -> bool; fn trigger(self : &Self); }