1
0
Fork 0

Removed unnecessary supertraits

This commit is contained in:
Rendo 2025-02-16 17:52:08 +05:00
commit 8c1e0bc703

View file

@ -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);
}