glfw: make glfw.Cursor.Shape public

Following a similar change made to types in 'Window.zig'
This commit is contained in:
InKryption 2021-11-16 16:25:23 +00:00 committed by Stephen Gutekanst
parent 673ce14acf
commit 70c7da4ea5

View file

@ -13,7 +13,7 @@ const Cursor = @This();
ptr: *c.GLFWcursor, ptr: *c.GLFWcursor,
// Standard system cursor shapes. // Standard system cursor shapes.
const Shape = enum(isize) { pub const Shape = enum(isize) {
/// The regular arrow cursor shape. /// The regular arrow cursor shape.
arrow = c.GLFW_ARROW_CURSOR, arrow = c.GLFW_ARROW_CURSOR,