(defstruct Vector2 [x f32 y f32]) (declare-c get-mouse-position [] Vector2 "GetMousePosition") (defn main [] (print (.x (get-mouse-position))) (println ""))