pub trait System: Send + Sync {
// Required methods
fn run(&mut self, world: &World, dt: f32);
fn access_info(&self) -> AccessInfo;
}Expand description
Bir sistem: her frame’de çalıştırılabilir mantık birimi.
pub trait System: Send + Sync {
// Required methods
fn run(&mut self, world: &World, dt: f32);
fn access_info(&self) -> AccessInfo;
}Bir sistem: her frame’de çalıştırılabilir mantık birimi.