1 2 3 4 5 6
use crate::application::Time; /// The `World` trait defines the update boundary for a physics simulation. pub trait World { fn update(&mut self, time: Time); }