From 70c7da4ea5bbdc5867985359f29c2d022ba519d3 Mon Sep 17 00:00:00 2001 From: InKryption <59504965+InKryption@users.noreply.github.com> Date: Tue, 16 Nov 2021 16:25:23 +0000 Subject: [PATCH] glfw: make `glfw.Cursor.Shape` public Following a similar change made to types in 'Window.zig' --- glfw/src/Cursor.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glfw/src/Cursor.zig b/glfw/src/Cursor.zig index 3937d495..36df011c 100644 --- a/glfw/src/Cursor.zig +++ b/glfw/src/Cursor.zig @@ -13,7 +13,7 @@ const Cursor = @This(); ptr: *c.GLFWcursor, // Standard system cursor shapes. -const Shape = enum(isize) { +pub const Shape = enum(isize) { /// The regular arrow cursor shape. arrow = c.GLFW_ARROW_CURSOR,