import triple_import_vec2::Vec2; struct Ship { position: Vec2 } impl Ship { pub fn new() -> Ship { Ship { position: Vec2 {x: 15, y: 16} } } }