glfw: correct import references

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2021-07-17 20:19:46 -07:00
parent c6e8bce219
commit 40e1520372
7 changed files with 60 additions and 60 deletions

View file

@ -4,14 +4,14 @@
const c = @import("c.zig").c;
pub const one = C.GLFW_MOUSE_BUTTON_1;
pub const two = C.GLFW_MOUSE_BUTTON_2;
pub const three = C.GLFW_MOUSE_BUTTON_3;
pub const four = C.GLFW_MOUSE_BUTTON_4;
pub const five = C.GLFW_MOUSE_BUTTON_5;
pub const six = C.GLFW_MOUSE_BUTTON_6;
pub const seven = C.GLFW_MOUSE_BUTTON_7;
pub const eight = C.GLFW_MOUSE_BUTTON_8;
pub const one = c.GLFW_MOUSE_BUTTON_1;
pub const two = c.GLFW_MOUSE_BUTTON_2;
pub const three = c.GLFW_MOUSE_BUTTON_3;
pub const four = c.GLFW_MOUSE_BUTTON_4;
pub const five = c.GLFW_MOUSE_BUTTON_5;
pub const six = c.GLFW_MOUSE_BUTTON_6;
pub const seven = c.GLFW_MOUSE_BUTTON_7;
pub const eight = c.GLFW_MOUSE_BUTTON_8;
pub const last = eight;
pub const left = one;