glfw: make two structs public

pull/2569/head
Alexander Medvednikov 2019-10-27 21:23:33 +03:00
parent 9c5abd575f
commit 9cddf22fff
1 changed files with 2 additions and 2 deletions

View File

@ -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