1 2 3 4 5 6
use crate::ui::Offset; pub struct Velocity { // The number of pixels per second of velocity in the x and y directions. pub pixels_per_second: Offset, }