1use wasm_bindgen::prelude::*; 2 3#[derive(Copy, Clone, PartialEq, Debug)] 4#[wasm_bindgen] 5pub struct Pos { 6 pub x: f64, 7 pub y: f64 8}