diff options
author | HampusM <hampus@hampusmat.com> | 2023-10-06 20:55:07 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2023-10-06 20:55:07 +0200 |
commit | f255db0f9252f4041b120dcaa00470889c4cb9f4 (patch) | |
tree | 94a56d2acc3cacdaebdae1dd9b37d533b9e7368f /glfw/src/ffi.rs | |
parent | e40fd63dd35430f234d65806ca7e0d6bea364bfc (diff) |
feat: add GLFW wrapper library
Diffstat (limited to 'glfw/src/ffi.rs')
-rw-r--r-- | glfw/src/ffi.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/glfw/src/ffi.rs b/glfw/src/ffi.rs new file mode 100644 index 0000000..d0affd0 --- /dev/null +++ b/glfw/src/ffi.rs @@ -0,0 +1,9 @@ +#![allow( + non_snake_case, + non_camel_case_types, + non_upper_case_globals, + unused, + clippy::unreadable_literal +)] + +include!(concat!(env!("OUT_DIR"), "/bindings.rs")); |