From 9cddf22fff5fb30d8d59ed84020350c98f02155f Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Sun, 27 Oct 2019 21:23:33 +0300 Subject: [PATCH] glfw: make two structs public --- vlib/glfw/glfw.v | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vlib/glfw/glfw.v b/vlib/glfw/glfw.v index 288d9c44ce..ded92be59a 100644 --- a/vlib/glfw/glfw.v +++ b/vlib/glfw/glfw.v @@ -71,13 +71,13 @@ pub struct Window { my int } -struct Size { +pub struct Size { pub: width int height int } -struct Pos { +pub struct Pos { pub: x int y int